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 1, 2022
1 parent d4d89b9 commit 7a3a9bd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/playground/css/__tests__/css.spec.ts
Expand Up @@ -342,7 +342,8 @@ test('PostCSS dir-dependency', async () => {
}
})

test('import dependency includes css import', async () => {
// skip because #8471 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 @@ -429,7 +430,8 @@ test('PostCSS source.input.from includes query', async () => {
)
})

test('aliased css has content', async () => {
// skip because #8471 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 7a3a9bd

Please sign in to comment.