async-test-util
Advanced tools
Comparing version 2.2.0 to 2.2.1
{ | ||
"name": "async-test-util", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"description": "Util-functions that are be useful in async tests", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -32,3 +32,3 @@ | ||
export const waitUntil: waitUntilType; | ||
type waitUntilType<T = void> = (predicate: () => MaybePromise<T>, timeout?: number, interval?: number) => Promise<T>; | ||
type waitUntilType<T = any> = (predicate: () => MaybePromise<T>, timeout?: number, interval?: number) => Promise<T>; | ||
@@ -35,0 +35,0 @@ /** |
Sorry, the diff of this file is not supported yet
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
62381