mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
Also skip stories on Chromatic
We would probably need to render these stories inside the manager UI for this to make sense in Chromatic (which detects errors)
This commit is contained in:
parent
deef786c2b
commit
a42250f24d
@ -35,7 +35,12 @@ storiesOf('Core|Events', module).add('Force re-render', () => (
|
||||
|
||||
// Skip these stories in storyshots, they will throw -- NOTE: would rather do this
|
||||
// via a params API, see https://github.com/storybooks/storybook/pull/3967#issuecomment-411616023
|
||||
if (navigator && navigator.userAgent && !(navigator.userAgent.indexOf('jsdom') > -1)) {
|
||||
if (
|
||||
navigator &&
|
||||
navigator.userAgent &&
|
||||
!(navigator.userAgent.indexOf('jsdom') > -1) &&
|
||||
!(navigator.userAgent.indexOf('Chromatic') > -1)
|
||||
) {
|
||||
storiesOf('Core|Errors', module)
|
||||
.add('story throws exception', () => {
|
||||
throw new Error('error');
|
||||
|
Loading…
x
Reference in New Issue
Block a user