Trivial Reporter improvements, runner now returns specs()

This commit is contained in:
ragaskar
2009-10-15 18:58:52 -07:00
parent 35171c9222
commit 308d02f72f
23 changed files with 2249 additions and 2157 deletions

View File

@@ -13,11 +13,6 @@ describe("jasmine.Env", function() {
expect(env.nextSpecId()).toEqual(2);
});
it('nextSuiteId should return consecutive integers, starting at 0', function () {
expect(env.nextSuiteId()).toEqual(0);
expect(env.nextSuiteId()).toEqual(1);
expect(env.nextSuiteId()).toEqual(2);
});
});
describe("reporting", function() {
var fakeReporter;