From 6b305ef4c154546e82ed3f63be4cfb230951fc19 Mon Sep 17 00:00:00 2001 From: Jack Hsu Date: Tue, 22 Nov 2022 16:07:40 -0500 Subject: [PATCH] =?UTF-8?q?chore(repo):=20disable=20storybook=20e2e=20test?= =?UTF-8?q?s=20temporarily=20until=20a=20fix=20for=20=E2=80=A6=20(#13336)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- e2e/next/src/next-storybook.test.ts | 4 +++- e2e/storybook-angular/src/storybook-angular.test.ts | 4 +++- e2e/storybook/src/storybook.test.ts | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/e2e/next/src/next-storybook.test.ts b/e2e/next/src/next-storybook.test.ts index 2242ecc50e4d2..2156dfe47d38e 100644 --- a/e2e/next/src/next-storybook.test.ts +++ b/e2e/next/src/next-storybook.test.ts @@ -6,7 +6,9 @@ import { uniq, } from '@nrwl/e2e/utils'; -describe('Next.js Applications', () => { +// TODO(jack): disabled for now because latest enhanced-resolve is causing errors for all projects using Storybook +// See: https://github.com/webpack/enhanced-resolve/issues/362 +xdescribe('Next.js Applications', () => { let proj: string; beforeEach( diff --git a/e2e/storybook-angular/src/storybook-angular.test.ts b/e2e/storybook-angular/src/storybook-angular.test.ts index 95535ddd5038f..a1654d4732417 100644 --- a/e2e/storybook-angular/src/storybook-angular.test.ts +++ b/e2e/storybook-angular/src/storybook-angular.test.ts @@ -14,7 +14,9 @@ import { } from '@nrwl/e2e/utils'; import { writeFileSync } from 'fs'; -describe('Storybook for Angular', () => { +// TODO(jack): disabled for now because latest enhanced-resolve is causing errors for all projects using Storybook +// See: https://github.com/webpack/enhanced-resolve/issues/362 +xdescribe('Storybook for Angular', () => { let proj: string; beforeAll(() => (proj = newProject())); diff --git a/e2e/storybook/src/storybook.test.ts b/e2e/storybook/src/storybook.test.ts index 23937ce08f3fd..8f0e27a145756 100644 --- a/e2e/storybook/src/storybook.test.ts +++ b/e2e/storybook/src/storybook.test.ts @@ -10,7 +10,9 @@ import { } from '@nrwl/e2e/utils'; import { writeFileSync } from 'fs'; -describe('Storybook schematics', () => { +// TODO(jack): disabled for now because latest enhanced-resolve is causing errors for all projects using Storybook +// See: https://github.com/webpack/enhanced-resolve/issues/362 +xdescribe('Storybook schematics', () => { const previousPM = process.env.SELECTED_PM; let reactStorybookLib: string;