@@ -54,13 +54,13 @@ function assertResultsFinish(results, expected) {
54
54
55
55
vows . describe ( 'vows/isolate' ) . addBatch ( {
56
56
'Running vows with -i flag for test/fixtures/isolate/' : {
57
- 'passing-test .js' : {
57
+ 'passing.js' : {
58
58
'with default reporter' : {
59
- topic : generateTopic ( null , 'passing-test .js' ) ,
59
+ topic : generateTopic ( null , 'passing.js' ) ,
60
60
'should be ok' : assertExecOk
61
61
} ,
62
62
'with json reporter' : {
63
- topic : generateTopic ( '--json' , 'passing-test .js' ) ,
63
+ topic : generateTopic ( '--json' , 'passing.js' ) ,
64
64
'should be ok' : assertExecOk ,
65
65
'should have correct output' : function ( r ) {
66
66
var results = parseResults ( r . stdout )
@@ -75,9 +75,9 @@ vows.describe('vows/isolate').addBatch({
75
75
}
76
76
}
77
77
} ,
78
- 'failing-test .js' : {
78
+ 'failing.js' : {
79
79
'with json reporter' : {
80
- topic : generateTopic ( '--json' , 'failing-test .js' ) ,
80
+ topic : generateTopic ( '--json' , 'failing.js' ) ,
81
81
'should be not ok' : assertExecNotOk ,
82
82
'should have correct output though' : function ( r ) {
83
83
var results = parseResults ( r . stdout ) ;
@@ -89,9 +89,9 @@ vows.describe('vows/isolate').addBatch({
89
89
}
90
90
}
91
91
} ,
92
- 'stderr-test .js' : {
92
+ 'stderr.js' : {
93
93
'with json reporter' : {
94
- topic : generateTopic ( '--json' , 'stderr-test .js' ) ,
94
+ topic : generateTopic ( '--json' , 'stderr.js' ) ,
95
95
'should be ok' : assertExecOk ,
96
96
'should have stderr' : function ( r ) {
97
97
assert . equal ( r . stderr ,
@@ -107,9 +107,9 @@ vows.describe('vows/isolate').addBatch({
107
107
}
108
108
}
109
109
} ,
110
- 'log-test .js' : {
110
+ 'log.js' : {
111
111
'with json reporter' : {
112
- topic : generateTopic ( '--json' , 'log-test .js' ) ,
112
+ topic : generateTopic ( '--json' , 'log.js' ) ,
113
113
'should be ok' : assertExecOk ,
114
114
'should have correct output' : function ( r ) {
115
115
var results = parseResults ( r . stdout ) ;
0 commit comments