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 623b197 commit 927420eCopy full SHA for 927420e
test/importTest.js
@@ -9,6 +9,12 @@ describe("import", function() {
9
], "", {
10
"./test.css": [[2, ".test{a: b}", ""]]
11
});
12
+ test("import with string", "@import \"test.css\";\n.class { a: b c d; }", [
13
+ [2, ".test{a: b}", ""],
14
+ [1, ".class { a: b c d; }", ""]
15
+ ], "", {
16
+ "./test.css": [[2, ".test{a: b}", ""]]
17
+ });
18
test("import 2", "@import url('test.css');\n.class { a: b c d; }", [
19
[2, ".test{a: b}", "screen"],
20
[1, ".class { a: b c d; }", ""]
0 commit comments