smoke - 🆙 retry timeout

This commit is contained in:
Benjamin Pasero
2021-12-01 11:34:18 +01:00
parent 5ec7a99d3e
commit d60b844aa3

View File

@@ -58,7 +58,7 @@ async function poll<T>(
fn: () => Thenable<T>,
acceptFn: (result: T) => boolean,
timeoutMessage: string,
retryCount: number = 200,
retryCount: number = 400,
retryInterval: number = 100 // millis
): Promise<T> {
let trial = 1;