red F, duh

This commit is contained in:
Steve Conover 2011-02-28 13:46:30 -08:00
parent 945a9ba638
commit c1d2718bea
2 changed files with 4 additions and 3 deletions

View File

@ -72,7 +72,7 @@ describe("TrivialNodeReporter", function() {
this.reporter.reportSpecResults(failingSpec);
expect(this.fakeSys.getOutput()).toEqual(
red(".")
red("F")
);
});

View File

@ -35,15 +35,16 @@ jasmine.TrivialNodeReporter.prototype._greenStr = function(str) { return this._c
jasmine.TrivialNodeReporter.prototype._redStr = function(str) { return this._coloredStr("red", str); };
jasmine.TrivialNodeReporter.prototype._yellowStr = function(str) { return this._coloredStr("yellow", str); };
jasmine.TrivialNodeReporter.prototype._redDot = function(str) { return this.sys.print(this._redStr(".")); };
jasmine.TrivialNodeReporter.prototype._greenDot = function(str) { return this.sys.print(this._greenStr(".")); };
jasmine.TrivialNodeReporter.prototype._redF = function(str) { return this.sys.print(this._redStr("F")); };
jasmine.TrivialNodeReporter.prototype._newLine = function(str) { return this.sys.print("\n"); };
jasmine.TrivialNodeReporter.prototype.reportSpecResults = function(spec) {
if (spec.results().passed()) {
this._greenDot();
} else {
this._redDot();
this._redF();
}
};