jasmine-core 2.9.0 → 2.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: jasmine-core
3
- Version: 2.9.0
3
+ Version: 2.9.1
4
4
  Summary: Jasmine is a Behavior Driven Development testing framework for JavaScript. It does not rely on browsers, DOM, or any JavaScript framework. Thus it's suited for websites, Node.js (http://nodejs.org) projects, or anywhere that JavaScript can run.
5
5
  Home-page: http://jasmine.github.io
6
6
  Author: Pivotal Labs
@@ -2193,6 +2193,7 @@ getJasmineRequireObj().DelayedFunctionScheduler = function(j$) {
2193
2193
  }
2194
2194
 
2195
2195
  do {
2196
+ deletedKeys = [];
2196
2197
  var newCurrentTime = scheduledLookup.shift();
2197
2198
  tickDate(newCurrentTime - currentTime);
2198
2199
 
@@ -2215,7 +2216,6 @@ getJasmineRequireObj().DelayedFunctionScheduler = function(j$) {
2215
2216
  }
2216
2217
  funcToRun.funcToCall.apply(null, funcToRun.params || []);
2217
2218
  });
2218
- deletedKeys = [];
2219
2219
  } while (scheduledLookup.length > 0 &&
2220
2220
  // checking first if we're out of time prevents setTimeout(0)
2221
2221
  // scheduled in a funcToRun from forcing an extra iteration
@@ -5538,5 +5538,5 @@ getJasmineRequireObj().UserContext = function(j$) {
5538
5538
  };
5539
5539
 
5540
5540
  getJasmineRequireObj().version = function() {
5541
- return '2.9.0';
5541
+ return '2.9.1';
5542
5542
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jasmine-core",
3
3
  "license": "MIT",
4
- "version": "2.9.0",
4
+ "version": "2.9.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/jasmine/jasmine.git"