Move most jasmine global usage into boot.

- thor build scripts broken for now.
This commit is contained in:
Davis W. Frank & Rajan Agaskar
2012-12-03 14:54:05 -08:00
parent b6c3999c3a
commit e2af08e0a6
23 changed files with 423 additions and 641 deletions

View File

@@ -12,7 +12,6 @@ describe("jasmine.Queue", function() {
queue.next_ = function() {
nestCount++;
if (nestCount > maxNestCount) maxNestCount = nestCount;
jasmine.Queue.prototype.next_.apply(queue, arguments);
nestCount--;
};
@@ -20,4 +19,4 @@ describe("jasmine.Queue", function() {
queue.start();
expect(maxNestCount).toEqual(1);
});
});
});