зеркало из https://github.com/mozilla/commonplace.git
Add error logging to unit test runner.
This commit is contained in:
Родитель
c375502803
Коммит
faacacbbac
|
@ -1,3 +1,11 @@
|
|||
// Alert any errors during testing.
|
||||
cobj.on('page.error', function(err, trace) {
|
||||
console.error(err);
|
||||
trace.forEach(function(item) {
|
||||
console.log(' ', item.file, ':', item.line);
|
||||
});
|
||||
});
|
||||
|
||||
casper.start("http://localhost:8675/tests", function() {
|
||||
console.log('Started initial navigation.');
|
||||
});
|
||||
|
|
Загрузка…
Ссылка в новой задаче