tests(sqljs): removed explicit error message

This commit is contained in:
Daniel Lang 2017-12-18 22:35:23 +01:00
parent 7639623d44
commit 79213872e2

View File

@ -340,14 +340,11 @@ export class Gulpfile {
timeout: 15000
}))
//.pipe(istanbul.writeReports())
.on("error", () => {
console.error("An error occured while running mocha");
error = true;
process.exit(1);
})
.on("finish", () => {
console.log("mocha finished, error is " + error ? "true" : "false");
})
// .on("error", () => {
// console.error("An error occured while running mocha");
// error = true;
// process.exit(1);
// })
}
/**