More clearly differentiate between spec and suite ids
This commit is contained in:
@@ -259,12 +259,12 @@ getJasmineRequireObj().Env = function(j$) {
|
||||
|
||||
// TODO: move this to closure
|
||||
Env.prototype.nextSpecId = function() {
|
||||
return this.nextSpecId_++;
|
||||
return 'spec' + this.nextSpecId_++;
|
||||
};
|
||||
|
||||
// TODO: move this to closure
|
||||
Env.prototype.nextSuiteId = function() {
|
||||
return this.nextSuiteId_++;
|
||||
return 'suite' + this.nextSuiteId_++;
|
||||
};
|
||||
|
||||
// TODO: move this to closure
|
||||
|
||||
Reference in New Issue
Block a user