mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 17:41:06 +08:00
Merge pull request #1441 from osdevisnot/master
avoid error "storyshots is intended only to be used with storybook" f…
This commit is contained in:
commit
6f239c4fbc
@ -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());
|
||||
|
Loading…
x
Reference in New Issue
Block a user