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 a2c42ed commit 794aaf3Copy full SHA for 794aaf3
testing/fixtures.js
@@ -1,4 +1,5 @@
1
export const comment = [
2
+ // Test with comments
3
{
4
css: "/* body { color: black; } */",
5
ast: {
@@ -11,4 +12,23 @@ export const comment = [
11
12
},
13
14
15
+ // Test with no comments
16
+ {
17
+ css: "body { color: black; }",
18
+ ast: {
19
+ type: "stylesheet",
20
+ stylesheet: {
21
+ rules: [{
22
+ type: "rule",
23
+ selectors: ["body"],
24
+ declarations: [
25
26
+ name: "color",
27
+ type: "property",
28
+ },
29
+ ],
30
+ }],
31
32
33
34
];
0 commit comments