From 64ba24417b9f19645725526d289ad1b61fc246a0 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Fri, 28 Aug 2020 20:33:54 -0400 Subject: [PATCH] Fixing tests again. --- ui/src/api_tests/shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/api_tests/shared.ts b/ui/src/api_tests/shared.ts index 85cec9c05..9d0a5a268 100644 --- a/ui/src/api_tests/shared.ts +++ b/ui/src/api_tests/shared.ts @@ -524,7 +524,7 @@ export async function followBeta(api: API): Promise { } } -export const delay = (millis: number = 3000) => +export const delay = (millis: number = 5000) => new Promise((resolve, _reject) => { setTimeout(_ => resolve(), millis); });