Add error logging to unit test runner.

This commit is contained in:
Matt Basta 2013-12-09 11:33:04 -08:00
Родитель c375502803
Коммит faacacbbac
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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.');
});