Merge pull request #1441 from osdevisnot/master

avoid error "storyshots is intended only to be used with storybook" f…
This commit is contained in:
Norbert de Langen 2017-09-13 22:34:53 +02:00 committed by GitHub
commit 6f239c4fbc

View File

@ -1,4 +1,5 @@
import path from 'path';
import fs from 'fs';
import global, { describe, it } from 'global';
import readPkgUp from 'read-pkg-up';
import addons from '@storybook/addons';
@ -19,7 +20,7 @@ const pkg = readPkgUp.sync().pkg;
const hasDependency = name =>
(pkg.devDependencies && pkg.devDependencies[name]) ||
(pkg.dependencies && pkg.dependencies[name]);
(pkg.dependencies && pkg.dependencies[name]) || fs.existsSync(path.join('node_modules', name, 'package.json'));
export default function testStorySnapshots(options = {}) {
addons.setChannel(createChannel());