From df7dc03edac0bd6986ee8ed1123f37dfcb43d045 Mon Sep 17 00:00:00 2001 From: Craigory Coppola Date: Fri, 11 Aug 2023 15:24:03 -0500 Subject: [PATCH] chore(repo): disable flaky test (#18596) --- e2e/storybook-angular/src/storybook-angular.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/storybook-angular/src/storybook-angular.test.ts b/e2e/storybook-angular/src/storybook-angular.test.ts index 49b68a1366..448f750453 100644 --- a/e2e/storybook-angular/src/storybook-angular.test.ts +++ b/e2e/storybook-angular/src/storybook-angular.test.ts @@ -35,7 +35,8 @@ describe('Storybook executors for Angular', () => { p.kill(); }, 200_000); - it('shoud build an Angular based storybook', () => { + // TODO(@mandarini): reenable test after debugging flakiness + xit('shoud build an Angular based storybook', () => { runCLI(`run ${angularStorybookLib}:build-storybook --verbose`); checkFilesExist(`dist/storybook/${angularStorybookLib}/index.html`); }, 200_000);