Skip to content

Commit

Permalink
(to rollback) CI/CD failure case testing
Browse files Browse the repository at this point in the history
  • Loading branch information
NoxNovus authored Dec 12, 2024
1 parent 0b485f3 commit a7bb38e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/main_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ async function runTest(rowData) {
console.log("Odyssey instance launched successfully.")

try {
assert (1 == 0);
const trueSpec = rowData['trueSpec'];
const trueAnalysis = rowData['trueAnalysis'];
const trueSpeedup = rowData['trueSpeedup'];
Expand Down Expand Up @@ -132,7 +133,7 @@ async function runTest(rowData) {

} catch (err) {
console.log(`Test failure.\n`);
console.error(err);
throw (err);
} finally {
await browser.close();
}
Expand Down

0 comments on commit a7bb38e

Please sign in to comment.