chore(repo): increase timeout for flaky test (#18970)

This commit is contained in:
Miroslav Jonaš 2023-09-01 19:15:50 +02:00 committed by GitHub
parent a5a522e92c
commit ede4b96e8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
});
});