Skip to content

Commit

Permalink
tests: remove filters
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgeorge007 committed Nov 26, 2020
1 parent 3666da7 commit b3eccc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/test/commands/init.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ afterAll(() => {

describe('sb init', () => {
it('starts storybook without errors', () => {
const dirs = fs.readdirSync(runDirPath).filter((dir) => !dir.includes('vue'));
const dirs = fs.readdirSync(runDirPath);
dirs.forEach((dir) => {
run(['init', '--skip-install', 'yes'], { cwd: path.join(runDirPath, dir) });
});
Expand Down

0 comments on commit b3eccc2

Please sign in to comment.