智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/e0/e0dfa0b36d5cf1712ca2ff3a3e8...

19 lines
844 B

"use strict";
var _helpers = require("./util/helpers");
(0, _helpers.test)('escaped semicolon in class', '.\\;', function (t, tree) {
t.deepEqual(tree.nodes[0].nodes[0].value, ';');
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\;');
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
});
(0, _helpers.test)('escaped semicolon in id', '#\\;', function (t, tree) {
t.deepEqual(tree.nodes[0].nodes[0].value, ';');
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\;');
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
}); // This is a side-effect of allowing media queries to be parsed. Not sure it shouldn't just be an error.
(0, _helpers.test)('bare parens capture contents as a string', '(h1)', function (t, tree) {
t.deepEqual(tree.nodes[0].nodes[0].value, '(h1)');
t.deepEqual(tree.nodes[0].nodes[0].type, 'string');
});