Skip to content

Commit

Permalink
test: skip failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red authored and patak-dev committed Jul 3, 2022
1 parent a0da2f0 commit a67b0d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions playground/css/__tests__/css.spec.ts
Expand Up @@ -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')
})
Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit a67b0d3

Please sign in to comment.