From ede4b96e8d49f46ae8e3d5fffffd1ea309406905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Fri, 1 Sep 2023 19:15:50 +0200 Subject: [PATCH] chore(repo): increase timeout for flaky test (#18970) --- e2e/storybook-angular/src/storybook-angular.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/storybook-angular/src/storybook-angular.test.ts b/e2e/storybook-angular/src/storybook-angular.test.ts index d3b678f965..cd2036ca5d 100644 --- a/e2e/storybook-angular/src/storybook-angular.test.ts +++ b/e2e/storybook-angular/src/storybook-angular.test.ts @@ -41,6 +41,6 @@ describe('Storybook executors for Angular', () => { it('shoud build an Angular based storybook', () => { runCLI(`run ${angularStorybookLib}:build-storybook`); checkFilesExist(`dist/storybook/${angularStorybookLib}/index.html`); - }, 600_000); + }, 1_000_000); }); });