Skip to content

Commit

Permalink
fix(storybook): increase timeout of flaky test (#15947)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed Mar 29, 2023
1 parent d20bf77 commit 9e9623e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/storybook/src/storybook.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ describe('Storybook generators and executors for monorepos', () => {
}
);
p.kill();
}, 20000);
}, 50000);

it('should build a React based storybook setup that uses webpack', () => {
// build
runCLI(`run ${reactStorybookLib}:build-storybook --verbose`);
checkFilesExist(`dist/storybook/${reactStorybookLib}/index.html`);
}, 40000);
}, 50000);

// This test makes sure path resolution works
it('should build a React based storybook that references another lib and uses webpack', () => {
Expand Down Expand Up @@ -117,6 +117,6 @@ describe('Storybook generators and executors for monorepos', () => {
// build React lib
runCLI(`run ${reactStorybookLib}:build-storybook --verbose`);
checkFilesExist(`dist/storybook/${reactStorybookLib}/index.html`);
}, 40000);
}, 50000);
});
});

0 comments on commit 9e9623e

Please sign in to comment.