Only redirect output to browser when running in CI.

This commit is contained in:
Cheng Zhao 2013-08-25 20:54:15 +08:00
parent 0f6617ec26
commit 15ba32b489

View file

@ -25,21 +25,23 @@
}
require('coffee-script'); // Supports .coffee tests.
var ipc = require('ipc');
// Rediret all output to browser.
var ipc = require('ipc');
global.__defineGetter__('console', function() {
return {
log: function() {
args = Array.prototype.slice.call(arguments);
ipc.sendChannel('console.log', args);
},
error: function() {
args = Array.prototype.slice.call(arguments);
ipc.sendChannel('console.error', args);
},
}
});
if (isCi) {
global.__defineGetter__('console', function() {
return {
log: function() {
args = Array.prototype.slice.call(arguments);
ipc.sendChannel('console.log', args);
},
error: function() {
args = Array.prototype.slice.call(arguments);
ipc.sendChannel('console.error', args);
},
}
});
}
var Mocha = require('mocha');