Skip to content

Commit

Permalink
test: put stacktrace when test failed
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed May 1, 2023
1 parent 05978c4 commit 065901b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/test/runLatestTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ async function main() {
launchArgs: ['--disable-extensions']
});
} catch (err) {
console.log(err);
console.error('Failed to run tests');
process.exit(1);
}
Expand Down
1 change: 1 addition & 0 deletions src/test/runLegacyTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ async function main() {
launchArgs: ['--disable-extensions']
});
} catch (err) {
console.log(err);
console.error('Failed to run tests');
process.exit(1);
}
Expand Down
1 change: 1 addition & 0 deletions src/test/runMinSupportVersionTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ async function main() {
launchArgs: ['--disable-extensions']
});
} catch (err) {
console.log(err);
console.error('Failed to run tests');
process.exit(1);
}
Expand Down

0 comments on commit 065901b

Please sign in to comment.