From 9e9623e3095d3f50b34ad3849b6d0c98c81663a3 Mon Sep 17 00:00:00 2001 From: Katerina Skroumpelou Date: Wed, 29 Mar 2023 12:18:08 +0300 Subject: [PATCH] fix(storybook): increase timeout of flaky test (#15947) --- e2e/storybook/src/storybook.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/storybook/src/storybook.test.ts b/e2e/storybook/src/storybook.test.ts index eeead6c87e..6f00cdcfdd 100644 --- a/e2e/storybook/src/storybook.test.ts +++ b/e2e/storybook/src/storybook.test.ts @@ -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', () => { @@ -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); }); });