update reporter
This commit is contained in:
parent
282ed40264
commit
b9b4648a24
@ -16,11 +16,30 @@ class jasmine.HeadlessReporter.Verbose extends jasmine.HeadlessReporter.ConsoleB
|
||||
indentSpec: (current, last, color) =>
|
||||
last = last.slice(0)
|
||||
|
||||
lines = []
|
||||
|
||||
for name in current
|
||||
if last.shift() != name
|
||||
lines.push(name)
|
||||
else
|
||||
lines.push(null)
|
||||
|
||||
this.indentLines(lines, color)
|
||||
|
||||
indentLines: (lines, color) =>
|
||||
indent = ''
|
||||
|
||||
output = []
|
||||
|
||||
indent = ''
|
||||
for name in current
|
||||
output.push(indent + name.foreground(color)) if last.shift() != name
|
||||
for line in lines
|
||||
if line?
|
||||
outputLine = indent
|
||||
outputLine += this.colorLine(line, color)
|
||||
|
||||
output.push(outputLine)
|
||||
indent += ' '
|
||||
|
||||
output
|
||||
|
||||
colorLine: (line, color) =>
|
||||
line.foreground(color)
|
||||
|
@ -6,6 +6,8 @@
|
||||
__extends(Verbose, jasmine.HeadlessReporter.ConsoleBase);
|
||||
|
||||
function Verbose() {
|
||||
this.colorLine = __bind(this.colorLine, this);
|
||||
this.indentLines = __bind(this.indentLines, this);
|
||||
this.indentSpec = __bind(this.indentSpec, this);
|
||||
this.displaySpec = __bind(this.displaySpec, this);
|
||||
this.displayFailure = __bind(this.displayFailure, this);
|
||||
@ -29,18 +31,40 @@
|
||||
};
|
||||
|
||||
Verbose.prototype.indentSpec = function(current, last, color) {
|
||||
var indent, name, output, _i, _len;
|
||||
var lines, name, _i, _len;
|
||||
last = last.slice(0);
|
||||
output = [];
|
||||
indent = '';
|
||||
lines = [];
|
||||
for (_i = 0, _len = current.length; _i < _len; _i++) {
|
||||
name = current[_i];
|
||||
if (last.shift() !== name) output.push(indent + name.foreground(color));
|
||||
if (last.shift() !== name) {
|
||||
lines.push(name);
|
||||
} else {
|
||||
lines.push(null);
|
||||
}
|
||||
}
|
||||
return this.indentLines(lines, color);
|
||||
};
|
||||
|
||||
Verbose.prototype.indentLines = function(lines, color) {
|
||||
var indent, line, output, outputLine, _i, _len;
|
||||
indent = '';
|
||||
output = [];
|
||||
for (_i = 0, _len = lines.length; _i < _len; _i++) {
|
||||
line = lines[_i];
|
||||
if (line != null) {
|
||||
outputLine = indent;
|
||||
outputLine += this.colorLine(line, color);
|
||||
output.push(outputLine);
|
||||
}
|
||||
indent += ' ';
|
||||
}
|
||||
return output;
|
||||
};
|
||||
|
||||
Verbose.prototype.colorLine = function(line, color) {
|
||||
return line.foreground(color);
|
||||
};
|
||||
|
||||
return Verbose;
|
||||
|
||||
})();
|
||||
|
Loading…
Reference in New Issue
Block a user