Skip to content

Commit

Permalink
fix(storybook): increase timeout of angular e2e (#18831)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed Aug 25, 2023
1 parent dcd4816 commit a009523
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion e2e/storybook-angular/src/storybook-angular.test.ts
Expand Up @@ -35,9 +35,10 @@ describe('Storybook executors for Angular', () => {
p.kill();
}, 200_000);

// Increased timeout because 92% sealing asset processing TerserPlugin
it('shoud build an Angular based storybook', () => {
runCLI(`run ${angularStorybookLib}:build-storybook`);
checkFilesExist(`dist/storybook/${angularStorybookLib}/index.html`);
}, 300_000);
}, 600_000);
});
});

0 comments on commit a009523

Please sign in to comment.