Storyshots: framework option should override package dependency check

This commit is contained in:
Julius Räihä 2017-07-18 14:44:16 +03:00
parent 860e952d3c
commit d25927a5fa
2 changed files with 5 additions and 2 deletions

View File

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

View File

@ -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"
}