test-agent
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -120,2 +120,3 @@ var Reporter = require(__dirname + '/../mocha/reporter'); | ||
this.isRunning = false; | ||
this.savedError = undefined; | ||
}, | ||
@@ -122,0 +123,0 @@ |
@@ -115,5 +115,8 @@ (function(window) { | ||
if (url in this._cached) { | ||
//url is cached we are good | ||
if (callback) { | ||
callback(); | ||
if (this.pending) { | ||
this.done(callback); | ||
} else { | ||
callback(); | ||
} | ||
} | ||
@@ -120,0 +123,0 @@ return; |
{ | ||
"name": "test-agent", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"author": "James Lal", | ||
@@ -5,0 +5,0 @@ "description": "execute client side tests from browser report back to cli", |
@@ -687,5 +687,8 @@ // Copyright Joyent, Inc. and other Node contributors. | ||
if (url in this._cached) { | ||
//url is cached we are good | ||
if (callback) { | ||
callback(); | ||
if (this.pending) { | ||
this.done(callback); | ||
} else { | ||
callback(); | ||
} | ||
} | ||
@@ -692,0 +695,0 @@ return; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
438532
14816