Ensure check works in node too

This commit is contained in:
Tom Coleman 2021-11-05 21:57:37 +11:00
parent 15ad3008ab
commit f864df8c47
2 changed files with 2 additions and 3 deletions

View File

@ -389,7 +389,7 @@ Storyshots is not currently compatible with the v7 store. However, you can use t
```js
features: {
storyStoreV7: !global.navigator.userAgent.match('jsdom');
storyStoreV7: !global.navigator?.userAgent?.match?.('jsdom');
}
```

View File

@ -1,6 +1,5 @@
import type { StorybookConfig } from '@storybook/react/types';
console.log(global.navigator.userAgent);
const config: StorybookConfig = {
stories: [
{
@ -29,7 +28,7 @@ const config: StorybookConfig = {
features: {
postcss: false,
// modernInlineRender: true,
storyStoreV7: !global.navigator.userAgent.match('jsdom'),
storyStoreV7: !global.navigator?.userAgent?.match?.('jsdom'),
buildStoriesJson: true,
babelModeV7: true,
},