Skip to content

Commit 62ea904

Browse files
committed
added test cases
1 parent 04adab2 commit 62ea904

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/test-cases.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,19 @@ module.exports = {
186186
],
187187

188188
"operators": [
189-
"a > .class-name~.x123+ div",
189+
"a > .class-name~.x123+ div >> col || td",
190190
singleSelector([
191191
{ type: "element", name: "a" },
192192
{ type: "operator", operator: ">", before: " ", after: " " },
193193
{ type: "class", name: "class-name" },
194194
{ type: "operator", operator: "~" },
195195
{ type: "class", name: "x123" },
196196
{ type: "operator", operator: "+", after: " " },
197-
{ type: "element", name: "div" }
197+
{ type: "element", name: "div" },
198+
{ type: "operator", operator: ">>", before: " ", after: " " },
199+
{ type: "element", name: "col" },
200+
{ type: "operator", operator: "||", before: " ", after: " " },
201+
{ type: "element", name: "td" }
198202
])
199203
],
200204

0 commit comments

Comments
 (0)