Skip to content

Commit 7289930

Browse files
committed
Add failing test
1 parent 8444aac commit 7289930

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/tests.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ let css: TestEntry[] = [
4747
[`@source "./file.js";`, `@source './file.js';`],
4848
[`@source not "./file.js";`, `@source not './file.js';`],
4949
[`@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+
],
5055
]
5156

5257
export let javascript: TestEntry[] = [

0 commit comments

Comments
 (0)