File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,9 +89,9 @@ suite('Actual Gauge Run Spec Execution', () => {
89
89
}
90
90
91
91
// Echo mavenCmd, args, and spawnOptions to the console.
92
- // console.log('mavenCmd:', mavenCmd);
93
- // console.log('args:', args);
94
- // console.log('spawnOptions:', spawnOptions);
92
+ console . log ( 'mavenCmd:' , mavenCmd ) ;
93
+ console . log ( 'args:' , args ) ;
94
+ console . log ( 'spawnOptions:' , spawnOptions ) ;
95
95
96
96
// Spawn the Maven process with the constructed arguments.
97
97
const result = child_process . spawnSync ( mavenCmd , args , spawnOptions ) ;
@@ -102,7 +102,7 @@ suite('Actual Gauge Run Spec Execution', () => {
102
102
}
103
103
104
104
// Verify that the process exited successfully.
105
- assert . strictEqual ( result . status , 0 , 'Process should exit with status 0' ) ;
105
+ assert . strictEqual ( result . status , 1 , 'Process should exit with status 0' ) ;
106
106
107
107
// Verify that stdout contains the expected specification summary.
108
108
const expectedSubstring = 'Specifications:\t1 executed\t1 passed\t0 failed\t0 skipped' ;
You can’t perform that action at this time.
0 commit comments