Skip to content

Commit 4b1a7ba

Browse files
committed
Remove unneeded postcss test
1 parent 7478581 commit 4b1a7ba

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

test/transformers/postcss.test.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,6 @@ describe('transformer - postcss', () => {
1414
expect(preprocessed.toString()).not.toMatch(/-webkit-/);
1515
});
1616

17-
it('should not transform plain css with postcss if { postcss: true } and no configuration file at cwd', async () => {
18-
const template = `<div></div><style>div{appearance:none;}</style>`;
19-
const preprocessed = await preprocess(
20-
template,
21-
getAutoPreprocess({
22-
postcss: true,
23-
}),
24-
);
25-
26-
expect(preprocessed.toString()).not.toMatch(/-webkit-/);
27-
});
28-
2917
it('should transform plain css with postcss if { postcss: { plugins... } }', async () => {
3018
const template = `<div></div><style>div{appearance:none;}</style>`;
3119
const optsWithoutConfigFile = getAutoPreprocess({

0 commit comments

Comments
 (0)