Skip to content

Commit dc750a7

Browse files
authored
Fix postcss testing (#1187)
1 parent a86b152 commit dc750a7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/deno/postcss.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { assertStringIncludes } from "jsr:@std/assert";
22

33
import postcss from "http://localhost:8080/[email protected]";
4-
import autoprefixer from "http://localhost:8080/[email protected][email protected]";
4+
import autoprefixer from "http://localhost:8080/[email protected][email protected],[email protected]";
55
import tailwindCSS from "http://localhost:8080/[email protected][email protected]";
66

77
Deno.test("postcss(autoprefixer)", async () => {
@@ -11,6 +11,7 @@ Deno.test("postcss(autoprefixer)", async () => {
1111
`).async();
1212
assertStringIncludes(css, "-webkit-backdrop-filter: blur(5px);");
1313
assertStringIncludes(css, "-webkit-user-select: none;");
14+
assertStringIncludes(css, "-moz-user-select: none;");
1415
});
1516

1617
Deno.test("postcss(tailwindCSS)", async () => {

0 commit comments

Comments
 (0)