log error.message

This commit is contained in:
adroitwhiz 2020-05-11 15:38:11 -04:00
parent 562e535a13
commit 0ce50b6cd6
2 changed files with 2 additions and 2 deletions
test/integration

View file

@ -106,6 +106,6 @@ const runFile = async (file, action, page, script) => {
})().catch(err => {
// Handle promise rejections by exiting with a nonzero code to ensure that tests don't erroneously pass
// eslint-disable-next-line no-console
console.error(err);
console.error(err.message);
process.exit(1);
});