Comparing version 1.0.2 to 1.0.3
@@ -0,1 +1,5 @@ | ||
# 1.0.3 | ||
## Bug Fixes | ||
- ([00821b3](https://github.com/angular/jasminewd/commit/00821b3180a6674012fdccab106835f5ce94bb3f)) fix(timeout): better messaging if the control flow does not have a listed last task | ||
# 1.0.2 | ||
@@ -6,3 +10,2 @@ | ||
# 1.0.1 | ||
@@ -9,0 +12,0 @@ |
@@ -291,5 +291,8 @@ /** | ||
console.warn('A Jasmine spec timed out. Resetting the WebDriver Control Flow.'); | ||
console.warn('The last active task was : ' + | ||
flow.activeFrame_.getPendingTask().toString()); | ||
console.warn('The last active task was: '); | ||
console.warn( | ||
(flow.activeFrame_ && flow.activeFrame_.getPendingTask() ? | ||
flow.activeFrame_.getPendingTask().toString() : | ||
'unknown')); | ||
flow.reset(); | ||
})); |
@@ -29,3 +29,3 @@ { | ||
"license": "MIT", | ||
"version": "1.0.2" | ||
"version": "1.0.3" | ||
} |
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
14032
267