More clearly differentiate between spec and suite ids

This commit is contained in:
Sheel Choksi
2013-07-29 22:04:08 -07:00
parent 66010d01ec
commit d60786a06c
4 changed files with 13 additions and 13 deletions

View File

@@ -8,9 +8,9 @@ describe("Env", function() {
describe('ids', function() {
it('nextSpecId should return consecutive integers, starting at 0', function() {
expect(env.nextSpecId()).toEqual(0);
expect(env.nextSpecId()).toEqual(1);
expect(env.nextSpecId()).toEqual(2);
expect(env.nextSpecId()).toEqual('spec0');
expect(env.nextSpecId()).toEqual('spec1');
expect(env.nextSpecId()).toEqual('spec2');
});
});