Trying to make E2E tests more stable

This commit is contained in:
David Négrier 2022-01-06 19:32:45 +01:00
parent 6a9bd08893
commit ca6fdb9025

View file

@ -14,7 +14,7 @@ export async function assertLogMessage(t: TestController, message: string): Prom
}
await t.wait(1000);
i++;
} while (i < 10);
} while (i < 30);
await t.expect(logs).contains(message);
}