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:
Tom Coleman 2018-08-13 10:23:07 +10:00 committed by GitHub
parent deef786c2b
commit a42250f24d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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');