2011-03-01 02:02:44 +00:00
|
|
|
describe("TrivialConsoleReporter", function() {
|
2011-02-28 22:51:03 +00:00
|
|
|
//keep these literal. otherwise the test loses value as a test.
|
2011-05-16 15:08:12 +00:00
|
|
|
function green(str) {
|
|
|
|
return '\033[32m' + str + '\033[0m';
|
|
|
|
}
|
|
|
|
|
|
|
|
function red(str) {
|
|
|
|
return '\033[31m' + str + '\033[0m';
|
|
|
|
}
|
|
|
|
|
|
|
|
function yellow(str) {
|
|
|
|
return '\033[33m' + str + '\033[0m';
|
|
|
|
}
|
|
|
|
|
|
|
|
function prefixGreen(str) {
|
|
|
|
return '\033[32m' + str;
|
|
|
|
}
|
|
|
|
|
|
|
|
function prefixRed(str) {
|
|
|
|
return '\033[31m' + str;
|
|
|
|
}
|
|
|
|
|
2011-02-28 21:35:53 +00:00
|
|
|
var newline = "\n";
|
2011-05-16 15:08:12 +00:00
|
|
|
|
|
|
|
var passingSpec = {
|
|
|
|
results: function() {
|
|
|
|
return {
|
|
|
|
passed: function() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
2011-05-17 01:28:46 +00:00
|
|
|
failingSpec = {
|
|
|
|
results: function() {
|
|
|
|
return {
|
|
|
|
passed: function() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
skippedSpec = {
|
|
|
|
results: function() {
|
|
|
|
return {skipped: true};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
passingRun = {
|
|
|
|
specs: function() {
|
|
|
|
return [null, null, null];
|
|
|
|
},
|
|
|
|
results: function() {
|
|
|
|
return {failedCount: 0, items_: [null, null, null]};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
failingRun = {
|
|
|
|
specs: function() {
|
|
|
|
return [null, null, null];
|
|
|
|
},
|
|
|
|
results: function() {
|
|
|
|
return {
|
|
|
|
failedCount: 7, items_: [null, null, null]};
|
|
|
|
}
|
|
|
|
};
|
2011-05-16 15:08:12 +00:00
|
|
|
|
|
|
|
function repeatedlyInvoke(f, times) {
|
|
|
|
for (var i = 0; i < times; i++) f(times + 1);
|
|
|
|
}
|
|
|
|
|
2011-02-28 22:39:59 +00:00
|
|
|
function repeat(thing, times) {
|
|
|
|
var arr = [];
|
2011-05-16 15:08:12 +00:00
|
|
|
for (var i = 0; i < times; i++) arr.push(thing);
|
2011-02-28 22:39:59 +00:00
|
|
|
return arr;
|
|
|
|
}
|
2011-05-16 15:08:12 +00:00
|
|
|
|
2011-03-01 01:50:16 +00:00
|
|
|
function simulateRun(reporter, specResults, suiteResults, finalRunner, startTime, endTime) {
|
|
|
|
reporter.reportRunnerStarting();
|
2011-05-16 15:08:12 +00:00
|
|
|
for (var i = 0; i < specResults.length; i++) {
|
|
|
|
reporter.reportSpecResults(specResults[i]);
|
|
|
|
}
|
|
|
|
for (i = 0; i < suiteResults.length; i++) {
|
|
|
|
reporter.reportSuiteResults(suiteResults[i]);
|
|
|
|
}
|
2011-03-01 01:50:16 +00:00
|
|
|
reporter.runnerStartTime = startTime;
|
2011-05-16 15:08:12 +00:00
|
|
|
reporter.now = function() {
|
|
|
|
return endTime;
|
|
|
|
};
|
2011-03-01 01:50:16 +00:00
|
|
|
reporter.reportRunnerResults(finalRunner);
|
|
|
|
}
|
2011-05-16 15:08:12 +00:00
|
|
|
|
|
|
|
var reporter, out, done;
|
|
|
|
|
2011-02-28 21:35:53 +00:00
|
|
|
beforeEach(function() {
|
2011-05-16 15:08:12 +00:00
|
|
|
out = (function() {
|
2011-02-28 21:35:53 +00:00
|
|
|
var output = "";
|
|
|
|
return {
|
2011-05-16 15:08:12 +00:00
|
|
|
print:function(str) {
|
|
|
|
output += str;
|
|
|
|
},
|
|
|
|
getOutput:function() {
|
|
|
|
return output;
|
|
|
|
},
|
|
|
|
clear: function() {
|
|
|
|
output = "";
|
|
|
|
}
|
2011-02-28 21:35:53 +00:00
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
done = false;
|
|
|
|
reporter = new jasmine.TrivialConsoleReporter(out.print, function(runner) {
|
|
|
|
done = true
|
2011-03-01 07:58:06 +00:00
|
|
|
});
|
2011-02-28 21:35:53 +00:00
|
|
|
});
|
2011-05-16 15:08:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
describe('Integration', function() {
|
|
|
|
it("prints the proper output under a pass scenario. small numbers.", function() {
|
|
|
|
simulateRun(reporter,
|
|
|
|
repeat(passingSpec, 3),
|
|
|
|
[],
|
2011-05-17 01:28:46 +00:00
|
|
|
{
|
|
|
|
specs: function() {
|
|
|
|
return [null, null, null];
|
2011-05-16 15:08:12 +00:00
|
|
|
},
|
2011-05-17 01:28:46 +00:00
|
|
|
results:function() {
|
|
|
|
return {
|
|
|
|
items_: [null, null, null],
|
|
|
|
totalCount: 7,
|
|
|
|
failedCount: 0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
2011-05-16 15:08:12 +00:00
|
|
|
1000,
|
|
|
|
1777
|
2011-05-17 01:28:46 +00:00
|
|
|
);
|
2011-05-16 15:08:12 +00:00
|
|
|
|
|
|
|
expect(out.getOutput()).toEqual(
|
2011-03-01 01:50:16 +00:00
|
|
|
[
|
2011-05-16 15:08:12 +00:00
|
|
|
"Started",
|
|
|
|
green(".") + green(".") + green("."),
|
|
|
|
"",
|
|
|
|
"Finished in 0.777 seconds",
|
|
|
|
green("3 specs, 7 expectations, 0 failures"),
|
|
|
|
""
|
2011-03-01 01:50:16 +00:00
|
|
|
].join("\n") + "\n"
|
2011-05-16 15:08:12 +00:00
|
|
|
);
|
2011-03-01 01:50:16 +00:00
|
|
|
});
|
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
it("prints the proper output under a pass scenario. large numbers.", function() {
|
|
|
|
simulateRun(reporter,
|
|
|
|
repeat(passingSpec, 57),
|
|
|
|
[],
|
|
|
|
{
|
2011-05-17 01:28:46 +00:00
|
|
|
specs: function() {
|
|
|
|
return [null, null, null];
|
|
|
|
},
|
2011-05-16 15:08:12 +00:00
|
|
|
results:function() {
|
|
|
|
return {
|
|
|
|
items_: [null, null, null],
|
|
|
|
totalCount: 7,
|
|
|
|
failedCount: 0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
1000,
|
|
|
|
1777);
|
|
|
|
|
|
|
|
expect(out.getOutput()).toEqual(
|
2011-03-01 01:50:16 +00:00
|
|
|
[
|
2011-05-16 15:08:12 +00:00
|
|
|
"Started",
|
|
|
|
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") + //50 green dots
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") +
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") +
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") +
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") +
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") +
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") +
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") +
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") +
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") +
|
|
|
|
|
|
|
|
green(".") + green(".") + green(".") + green(".") + green(".") + //7 green dots
|
|
|
|
green(".") + green("."),
|
|
|
|
|
|
|
|
"",
|
|
|
|
"Finished in 0.777 seconds",
|
|
|
|
green("3 specs, 7 expectations, 0 failures"),
|
|
|
|
""
|
2011-03-01 01:50:16 +00:00
|
|
|
].join("\n") + "\n"
|
2011-05-16 15:08:12 +00:00
|
|
|
);
|
2011-03-01 01:50:16 +00:00
|
|
|
});
|
2011-05-16 15:08:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
it("prints the proper output under a failure scenario.", function() {
|
|
|
|
simulateRun(reporter,
|
|
|
|
[failingSpec, passingSpec, failingSpec],
|
|
|
|
[
|
|
|
|
{description:"The oven",
|
|
|
|
results:function() {
|
|
|
|
return {
|
|
|
|
items_:[
|
|
|
|
{failedCount:2,
|
|
|
|
description:"heats up",
|
|
|
|
items_:[
|
|
|
|
{trace:{stack:"stack trace one\n second line"}},
|
|
|
|
{trace:{stack:"stack trace two"}}
|
|
|
|
]}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}},
|
|
|
|
{description:"The washing machine",
|
|
|
|
results:function() {
|
|
|
|
return {
|
|
|
|
items_:[
|
|
|
|
{failedCount:2,
|
|
|
|
description:"washes clothes",
|
|
|
|
items_:[
|
|
|
|
{trace:{stack:"stack trace one"}}
|
|
|
|
]}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}}
|
|
|
|
],
|
|
|
|
{
|
2011-05-17 01:28:46 +00:00
|
|
|
specs: function() {
|
|
|
|
return [null, null, null];
|
|
|
|
},
|
2011-05-16 15:08:12 +00:00
|
|
|
results:function() {
|
|
|
|
return {
|
|
|
|
items_: [null, null, null],
|
|
|
|
totalCount: 7,
|
|
|
|
failedCount: 2
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
1000,
|
|
|
|
1777);
|
|
|
|
|
|
|
|
expect(out.getOutput()).toEqual(
|
2011-03-01 06:30:03 +00:00
|
|
|
[
|
2011-05-16 15:08:12 +00:00
|
|
|
"Started",
|
|
|
|
red("F") + green(".") + red("F"),
|
|
|
|
"",
|
|
|
|
"The oven heats up",
|
|
|
|
" stack trace one",
|
|
|
|
" second line",
|
|
|
|
" stack trace two",
|
|
|
|
"",
|
|
|
|
"The washing machine washes clothes",
|
|
|
|
" stack trace one",
|
|
|
|
"",
|
|
|
|
"Finished in 0.777 seconds",
|
|
|
|
red("3 specs, 7 expectations, 2 failures"),
|
|
|
|
""
|
2011-03-01 06:30:03 +00:00
|
|
|
].join("\n") + "\n"
|
2011-05-16 15:08:12 +00:00
|
|
|
);
|
2011-03-01 06:30:03 +00:00
|
|
|
});
|
2011-03-01 01:50:16 +00:00
|
|
|
});
|
2011-02-28 22:56:09 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
describe('When a Jasmine environment executes', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
reporter.reportRunnerStarting();
|
|
|
|
});
|
2011-02-28 22:56:09 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
it("should print 'Started' to the console", function() {
|
|
|
|
expect(out.getOutput()).toEqual("Started" + newline);
|
2011-02-28 22:56:09 +00:00
|
|
|
});
|
2011-02-28 21:35:53 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
describe('when a spec reports', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
out.clear();
|
2011-02-28 21:35:53 +00:00
|
|
|
});
|
2011-02-28 21:45:22 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
it("prints a green dot if the spec passes", function() {
|
|
|
|
reporter.reportSpecResults(passingSpec);
|
|
|
|
|
|
|
|
expect(out.getOutput()).toEqual(green("."));
|
2011-02-28 21:45:22 +00:00
|
|
|
});
|
2011-02-28 22:51:03 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
it("prints a red dot if the spec fails", function() {
|
|
|
|
reporter.reportSpecResults(failingSpec);
|
2011-02-28 22:51:03 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(out.getOutput()).toEqual(red("F"));
|
|
|
|
});
|
|
|
|
|
|
|
|
it("prints a yellow star if the spec was skipped", function() {
|
|
|
|
reporter.reportSpecResults(skippedSpec);
|
|
|
|
|
|
|
|
expect(out.getOutput()).toEqual(yellow("*"));
|
2011-02-28 22:51:03 +00:00
|
|
|
});
|
2011-02-28 22:39:59 +00:00
|
|
|
});
|
2011-05-16 15:08:12 +00:00
|
|
|
|
|
|
|
describe('when a suite reports', function() {
|
|
|
|
var emptyResults;
|
|
|
|
beforeEach(function() {
|
|
|
|
emptyResults = function() {
|
|
|
|
return {
|
|
|
|
items_:[]
|
|
|
|
};
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
it("remembers suite results", function() {
|
|
|
|
reporter.reportSuiteResults({description: "Oven", results: emptyResults});
|
|
|
|
reporter.reportSuiteResults({description: "Mixer", results: emptyResults});
|
|
|
|
|
|
|
|
expect(reporter.suiteResults[0].description).toEqual('Oven');
|
|
|
|
expect(reporter.suiteResults[1].description).toEqual('Mixer');
|
|
|
|
});
|
|
|
|
|
|
|
|
it("creates a description out of the current suite and any parent suites", function() {
|
|
|
|
var grandparentSuite = {
|
|
|
|
description: "My house",
|
|
|
|
results: emptyResults
|
|
|
|
};
|
|
|
|
var parentSuite = {
|
|
|
|
description: "kitchen",
|
|
|
|
parentSuite: grandparentSuite,
|
|
|
|
results: emptyResults
|
|
|
|
};
|
|
|
|
reporter.reportSuiteResults({ description: "oven", parentSuite: parentSuite, results: emptyResults });
|
|
|
|
|
|
|
|
expect(reporter.suiteResults[0].description).toEqual("My house kitchen oven");
|
2011-03-01 00:16:20 +00:00
|
|
|
});
|
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
it("gathers failing spec results from the suite - the spec must have a description.", function() {
|
|
|
|
reporter.reportSuiteResults({description:"Oven",
|
|
|
|
results: function() {
|
|
|
|
return {
|
|
|
|
items_:[
|
|
|
|
{ failedCount: 0, description: "specOne" },
|
|
|
|
{ failedCount: 99, description: "specTwo" },
|
|
|
|
{ failedCount: 0, description: "specThree" },
|
|
|
|
{ failedCount: 88, description: "specFour" },
|
|
|
|
{ failedCount: 3 }
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}});
|
|
|
|
|
|
|
|
expect(reporter.suiteResults[0].failedSpecResults).
|
2011-03-01 00:16:20 +00:00
|
|
|
toEqual([
|
2011-05-16 15:08:12 +00:00
|
|
|
{ failedCount: 99, description: "specTwo" },
|
|
|
|
{ failedCount: 88, description: "specFour" }
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
2011-03-01 00:16:20 +00:00
|
|
|
});
|
2011-03-01 01:13:04 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
describe('and finishes', function() {
|
|
|
|
|
|
|
|
describe('when reporting spec failure information', function() {
|
2011-03-01 01:13:04 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
it("prints suite and spec descriptions together as a sentence", function() {
|
|
|
|
reporter.suiteResults = [
|
2011-03-01 01:13:04 +00:00
|
|
|
{description:"The oven", failedSpecResults:[
|
2011-05-16 15:08:12 +00:00
|
|
|
{description:"heats up", items_:[]},
|
|
|
|
{description:"cleans itself", items_:[]}
|
|
|
|
]},
|
2011-03-01 01:13:04 +00:00
|
|
|
{description:"The mixer", failedSpecResults:[
|
2011-05-16 15:08:12 +00:00
|
|
|
{description:"blends things together", items_:[]}
|
|
|
|
]}
|
2011-03-01 01:20:22 +00:00
|
|
|
];
|
2011-03-01 01:13:04 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
reporter.reportRunnerResults(failingRun);
|
|
|
|
|
|
|
|
expect(out.getOutput()).toContain("The oven heats up");
|
|
|
|
expect(out.getOutput()).toContain("The oven cleans itself");
|
|
|
|
expect(out.getOutput()).toContain("The mixer blends things together");
|
2011-03-01 01:13:04 +00:00
|
|
|
});
|
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
it("prints stack trace of spec failure", function() {
|
|
|
|
reporter.suiteResults = [
|
2011-03-01 01:20:22 +00:00
|
|
|
{description:"The oven", failedSpecResults:[
|
2011-05-16 15:08:12 +00:00
|
|
|
{description:"heats up",
|
|
|
|
items_:[
|
|
|
|
{trace:{stack:"stack trace one"}},
|
|
|
|
{trace:{stack:"stack trace two"}}
|
|
|
|
]}
|
|
|
|
]}
|
2011-03-01 01:20:22 +00:00
|
|
|
];
|
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
reporter.reportRunnerResults(failingRun);
|
|
|
|
|
|
|
|
expect(out.getOutput()).toContain("The oven heats up");
|
|
|
|
expect(out.getOutput()).toContain("stack trace one");
|
|
|
|
expect(out.getOutput()).toContain("stack trace two");
|
2011-03-01 01:20:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
2011-03-01 01:13:04 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
describe('when reporting the execution time', function() {
|
|
|
|
|
|
|
|
it("prints the full finished message", function() {
|
|
|
|
reporter.now = function() {
|
|
|
|
return 1000;
|
|
|
|
};
|
|
|
|
reporter.reportRunnerStarting();
|
|
|
|
reporter.now = function() {
|
|
|
|
return 1777;
|
|
|
|
};
|
|
|
|
reporter.reportRunnerResults(failingRun);
|
|
|
|
expect(out.getOutput()).toContain("Finished in 0.777 seconds");
|
2011-03-01 00:50:54 +00:00
|
|
|
});
|
2011-05-16 15:08:12 +00:00
|
|
|
|
|
|
|
it("prints round time numbers correctly", function() {
|
2011-03-01 00:50:54 +00:00
|
|
|
function run(startTime, endTime) {
|
2011-05-16 15:08:12 +00:00
|
|
|
out.clear();
|
|
|
|
reporter.runnerStartTime = startTime;
|
|
|
|
reporter.now = function() {
|
|
|
|
return endTime;
|
|
|
|
};
|
|
|
|
reporter.reportRunnerResults(passingRun);
|
2011-03-01 00:50:54 +00:00
|
|
|
}
|
2011-05-16 15:08:12 +00:00
|
|
|
|
2011-03-01 00:50:54 +00:00
|
|
|
run(1000, 11000);
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(out.getOutput()).toContain("10 seconds");
|
|
|
|
|
2011-03-01 00:50:54 +00:00
|
|
|
run(1000, 2000);
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(out.getOutput()).toContain("1 seconds");
|
|
|
|
|
2011-03-01 00:50:54 +00:00
|
|
|
run(1000, 1100);
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(out.getOutput()).toContain("0.1 seconds");
|
2011-03-01 00:50:54 +00:00
|
|
|
|
|
|
|
run(1000, 1010);
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(out.getOutput()).toContain("0.01 seconds");
|
2011-03-01 00:50:54 +00:00
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
run(1000, 1001);
|
|
|
|
expect(out.getOutput()).toContain("0.001 seconds");
|
2011-03-01 00:50:54 +00:00
|
|
|
});
|
2011-02-28 23:31:48 +00:00
|
|
|
});
|
|
|
|
|
2011-05-16 15:08:12 +00:00
|
|
|
describe("when reporting the results summary", function() {
|
2011-03-01 00:50:54 +00:00
|
|
|
it("prints statistics in green if there were no failures", function() {
|
2011-05-16 15:08:12 +00:00
|
|
|
reporter.reportRunnerResults({
|
2011-05-17 01:28:46 +00:00
|
|
|
specs: function() {
|
|
|
|
return [null, null, null];
|
|
|
|
},
|
2011-05-16 15:08:12 +00:00
|
|
|
results:function() {
|
|
|
|
return {items_: [null, null, null], totalCount: 7, failedCount: 0};
|
|
|
|
}
|
2011-03-01 00:50:54 +00:00
|
|
|
});
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(out.getOutput()).
|
2011-03-09 02:37:44 +00:00
|
|
|
toContain("3 specs, 7 expectations, 0 failures");
|
2011-03-01 00:50:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("prints statistics in red if there was a failure", function() {
|
2011-05-16 15:08:12 +00:00
|
|
|
reporter.reportRunnerResults({
|
2011-05-17 01:28:46 +00:00
|
|
|
specs: function() {
|
|
|
|
return [null, null, null];
|
|
|
|
},
|
2011-05-16 15:08:12 +00:00
|
|
|
results:function() {
|
|
|
|
return {items_: [null, null, null], totalCount: 7, failedCount: 3};
|
|
|
|
}
|
2011-03-01 00:50:54 +00:00
|
|
|
});
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(out.getOutput()).
|
2011-03-09 02:37:44 +00:00
|
|
|
toContain("3 specs, 7 expectations, 3 failures");
|
2011-03-01 00:50:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("handles pluralization with 1's ones appropriately", function() {
|
2011-05-16 15:08:12 +00:00
|
|
|
reporter.reportRunnerResults({
|
2011-05-17 01:28:46 +00:00
|
|
|
specs: function() {
|
|
|
|
return [null];
|
|
|
|
},
|
2011-05-16 15:08:12 +00:00
|
|
|
results:function() {
|
|
|
|
return {items_: [null], totalCount: 1, failedCount: 1};
|
|
|
|
}
|
2011-03-01 00:50:54 +00:00
|
|
|
});
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(out.getOutput()).
|
2011-03-09 02:37:44 +00:00
|
|
|
toContain("1 spec, 1 expectation, 1 failure");
|
2011-03-01 00:50:54 +00:00
|
|
|
});
|
2011-02-28 23:31:48 +00:00
|
|
|
});
|
2011-05-16 15:08:12 +00:00
|
|
|
|
|
|
|
describe("done callback", function() {
|
2011-03-01 07:58:06 +00:00
|
|
|
it("calls back when done", function() {
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(done).toBeFalsy();
|
|
|
|
reporter.reportRunnerResults({
|
2011-05-17 01:28:46 +00:00
|
|
|
specs: function() {
|
|
|
|
return [null, null, null];
|
|
|
|
},
|
2011-05-16 15:08:12 +00:00
|
|
|
results:function() {
|
|
|
|
return {items_: [null, null, null], totalCount: 7, failedCount: 0};
|
|
|
|
}
|
2011-03-01 07:58:06 +00:00
|
|
|
});
|
2011-05-16 15:08:12 +00:00
|
|
|
expect(done).toBeTruthy();
|
|
|
|
});
|
2011-03-01 07:58:06 +00:00
|
|
|
});
|
2011-02-28 23:13:46 +00:00
|
|
|
});
|
2011-02-28 21:35:53 +00:00
|
|
|
});
|
|
|
|
});
|