Skip to content

Commit 070c6eb

Browse files
committed
Maven test update
Signed-off-by: Piotr Nestorow <piotr.nestorow@systemverification.com>
1 parent 5890fbe commit 070c6eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/maven.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ suite('Actual Gauge Run Spec Execution', () => {
8989
}
9090

9191
// 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);
9595

9696
// Spawn the Maven process with the constructed arguments.
9797
const result = child_process.spawnSync(mavenCmd, args, spawnOptions);
@@ -102,7 +102,7 @@ suite('Actual Gauge Run Spec Execution', () => {
102102
}
103103

104104
// 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');
106106

107107
// Verify that stdout contains the expected specification summary.
108108
const expectedSubstring = 'Specifications:\t1 executed\t1 passed\t0 failed\t0 skipped';

0 commit comments

Comments
 (0)