From a67b0d3fd5cecfdd9e097fb7c118303a6e720800 Mon Sep 17 00:00:00 2001 From: sapphi-red Date: Sun, 3 Jul 2022 19:36:38 +0900 Subject: [PATCH] test: skip failing test --- playground/css/__tests__/css.spec.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/playground/css/__tests__/css.spec.ts b/playground/css/__tests__/css.spec.ts index b5af00d1a4f537..5b7114c07f46cd 100644 --- a/playground/css/__tests__/css.spec.ts +++ b/playground/css/__tests__/css.spec.ts @@ -349,7 +349,8 @@ test('PostCSS dir-dependency', async () => { } }) -test('import dependency includes css import', async () => { +// skip because #8278 is reverted +test.skip('import dependency includes css import', async () => { expect(await getColor('.css-js-dep')).toBe('green') expect(await getColor('.css-js-dep-module')).toBe('green') }) @@ -436,7 +437,8 @@ test('PostCSS source.input.from includes query', async () => { ) }) -test('aliased css has content', async () => { +// skip because #8278 is reverted +test.skip('aliased css has content', async () => { expect(await getColor('.aliased')).toBe('blue') expect(await page.textContent('.aliased-content')).toMatch('.aliased') expect(await getColor('.aliased-module')).toBe('blue')