jasminewd2
Advanced tools
Comparing version 0.0.6 to 0.0.7
# Changelog for jasminewd2 | ||
# 0.0.7 | ||
- ([55fd11e](https://github.com/angular/protractor/commit/55fd11e69c2f1ba8fba9a19a8acccbe933896084)) | ||
fix(index): forward it's return value | ||
- ([f4c30a0](https://github.com/angular/protractor/commit/f4c30a0023c6ec33b15df762226c3fe8e741d26e)) | ||
fix: allow empty it functions | ||
# 0.0.6 | ||
@@ -4,0 +12,0 @@ |
@@ -111,8 +111,11 @@ /** | ||
description = validateString(arguments[0]); | ||
if (!arguments[1]) { | ||
return globalFn(description); | ||
} | ||
func = validateFunction(arguments[1]); | ||
if (!arguments[2]) { | ||
globalFn(description, asyncTestFn(func, description)); | ||
return globalFn(description, asyncTestFn(func, description)); | ||
} else { | ||
timeout = validateNumber(arguments[2]); | ||
globalFn(description, asyncTestFn(func, description), timeout); | ||
return globalFn(description, asyncTestFn(func, description), timeout); | ||
} | ||
@@ -119,0 +122,0 @@ break; |
@@ -29,3 +29,3 @@ { | ||
"license": "MIT", | ||
"version": "0.0.6" | ||
"version": "0.0.7" | ||
} |
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
232
14628
5