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 c27bc21 commit 901a6ffCopy full SHA for 901a6ff
test/core/css/test.js
@@ -0,0 +1,11 @@
1
+const Test = require('../core_test');
2
+
3
+describe('css', function() {
4
+ it('Should parse variables', function() {
5
+ const test = new Test(this);
6
7
+ test.comb.configure({});
8
9
+ return test.shouldBeEqual('variable.css');
10
+ });
11
+});
test/core/css/variable.css
@@ -0,0 +1,3 @@
+div {
+ --color: red;
+}
0 commit comments