test-electron: print test failure to window console too

This commit is contained in:
Johannes Rieken
2017-03-24 10:22:11 +01:00
parent 8a345061c2
commit 375bb990ed

View File

@@ -104,6 +104,8 @@ function runTests(opts) {
title: test.fullTitle(),
stack: test.err.stack
});
console.error(test.fullTitle());
console.error(test.err.stack);
});
runner.on('pass', function () {