File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ var help = [
49
49
" -v, --verbose Enable verbose output" ,
50
50
" -w, --watch Watch mode" ,
51
51
" -s, --silent Don't report" ,
52
+ " -i, --isolate Run each test in it's own vows process" ,
52
53
" -m PATTERN Only run tests matching the PATTERN string" ,
53
54
" -r PATTERN Only run tests matching the PATTERN regexp" ,
54
55
" --json Use JSON reporter" ,
@@ -66,7 +67,8 @@ var options = {
66
67
reporter : reporter ,
67
68
matcher : / .* / ,
68
69
watch : false ,
69
- coverage : false
70
+ coverage : false ,
71
+ isolate : false
70
72
} ;
71
73
72
74
var files = [ ] ;
@@ -134,6 +136,10 @@ while (arg = argv.shift()) {
134
136
case 'w' :
135
137
options . watch = true ;
136
138
break ;
139
+ case 'isolate' :
140
+ case 'i' :
141
+ options . isolate = true ;
142
+ break ;
137
143
case 'no-color' :
138
144
options . nocolor = true ;
139
145
break ;
You can’t perform that action at this time.
0 commit comments