mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 03:01:07 +08:00
Storyshots: framework option should override package dependency check
This commit is contained in:
parent
860e952d3c
commit
d25927a5fa
@ -24,9 +24,11 @@ const hasDependency = name =>
|
||||
export default function testStorySnapshots(options = {}) {
|
||||
addons.setChannel(createChannel());
|
||||
|
||||
const isStorybook = options.framework === 'react' || hasDependency('@storybook/react');
|
||||
const isStorybook =
|
||||
options.framework === 'react' || (!options.framework && hasDependency('@storybook/react'));
|
||||
const isRNStorybook =
|
||||
options.framework === 'react-native' || hasDependency('@storybook/react-native');
|
||||
options.framework === 'react-native' ||
|
||||
(!options.framework && hasDependency('@storybook/react-native'));
|
||||
|
||||
if (isStorybook) {
|
||||
storybook = require.requireActual('@storybook/react');
|
||||
|
@ -24,6 +24,7 @@
|
||||
"@storybook/channels": "file:../../lib/channels",
|
||||
"@storybook/channel-postmessage": "file:../../lib/channel-postmessage",
|
||||
"@storybook/react-native": "file:../../app/react-native",
|
||||
"@storybook/react": "file:../../app/react",
|
||||
"@storybook/ui": "file:../../lib/ui",
|
||||
"react-dom": "^15.5.4"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user