Color suites to reflect spec pass/fail status.
This commit is contained in:
parent
4b244612c1
commit
2ef71580ad
@ -49,6 +49,12 @@ jasmine.TrivialReporter.prototype.reportRunnerResults = function(runner) {
|
||||
};
|
||||
|
||||
jasmine.TrivialReporter.prototype.reportSuiteResults = function(suite) {
|
||||
var results = suite.getResults();
|
||||
var status = results.passed() ? 'passed' : 'failed';
|
||||
if (results.totalCount == 0) { // todo: change this to check results.skipped
|
||||
status = 'skipped';
|
||||
}
|
||||
this.suiteDivs[suite.getFullName()].className += " " + status;
|
||||
};
|
||||
|
||||
jasmine.TrivialReporter.prototype.reportSpecResults = function(spec) {
|
||||
|
Loading…
Reference in New Issue
Block a user