Comparing version 1.0.3 to 1.0.4
@@ -0,1 +1,10 @@ | ||
# 1.0.4 | ||
## Bug Fixes | ||
- ([a088e6f](https://github.com/angular/jasminewd/commit/a088e6f175ca817f59d5eea99549e45ab5861ce0)) fix(timeouts): should call special timeout handlers only for a jasmine timeout | ||
Previously, it used to call the resets if anything matched 'timeout'. This was too | ||
vague, since many error messages contain that string. | ||
Closes #8 | ||
# 1.0.3 | ||
@@ -2,0 +11,0 @@ ## Bug Fixes |
@@ -275,3 +275,5 @@ /** | ||
if (failureItem.toString().match(/timeout/)) { | ||
var jasmineTimeoutRegexp = | ||
/timed out after \d+ msec waiting for spec to complete/; | ||
if (failureItem.toString().match(jasmineTimeoutRegexp)) { | ||
this.callback(); | ||
@@ -278,0 +280,0 @@ } |
@@ -29,3 +29,3 @@ { | ||
"license": "MIT", | ||
"version": "1.0.3" | ||
"version": "1.0.4" | ||
} |
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
14509
269