We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8444aac commit 7289930Copy full SHA for 7289930
tests/tests.ts
@@ -47,6 +47,11 @@ let css: TestEntry[] = [
47
[`@source "./file.js";`, `@source './file.js';`],
48
[`@source not "./file.js";`, `@source not './file.js';`],
49
[`@source inline("flex");`, `@source inline('flex');`],
50
+
51
+ [
52
+ `@import "tailwindcss";\n\n@use "tailwindcss";\n\n@source "./file.js";\n\n.foo {\n color: red;\n}`,
53
+ `@import 'tailwindcss';\n\n@use 'tailwindcss';\n\n@source './file.js';\n\n.foo {\n color: red;\n}`,
54
+ ],
55
]
56
57
export let javascript: TestEntry[] = [
0 commit comments