Disable colorized output in tests on Windows.

https://github.com/ariya/phantomjs/issues/12484
2.0
Vitaliy Slobodin 2014-08-21 00:06:01 +04:00 committed by Ariya Hidayat
parent 3be7005a17
commit 22e74549a3
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ jasmineEnv.addReporter(new jasmine.ConsoleReporter(
function (reporter) {
phantom.exit(reporter.results().failedCount > 0 ? 1 : 0);
},
// Colorized
true,
// Colorized (but disable colorized output on Windows by default)
sys.os.name == 'windows' ? false : true,
// Verbosity
verbose
));