Skip to content

Commit 4994199

Browse files
committed
more tests
1 parent 4b19770 commit 4994199

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

tests/cli/assets/data.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,30 @@ module.exports = {
2222
0
2323
]
2424
},
25+
"mix of cli options": {
26+
"args": [
27+
"--config=.rc1",
28+
"--ignore=important",
29+
"dir"
30+
],
31+
"expecting": [
32+
"csslint: No errors in dir/a.css.",
33+
"csslint: There is 1 problem in dir/b.css.",
34+
0
35+
]
36+
},
37+
"more mixes of cli options": {
38+
"args": [
39+
"--config=.rc1",
40+
"--errors=important",
41+
"dir"
42+
],
43+
"expecting": [
44+
"csslint: There is 1 problem in dir/a.css.",
45+
"csslint: No errors in dir/b.css.",
46+
1
47+
]
48+
},
2549
"version": {
2650
"args": [
2751
"--version"

0 commit comments

Comments
 (0)