From 62076e10a57aaaa605812f65c81b2f52c67d8b9c Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Sun, 24 Sep 2023 02:00:33 +0200 Subject: [PATCH] :test_tube: test(fixtures): Reduce flakiness of consultation edit tests. --- test/app/client/fixtures.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/app/client/fixtures.ts b/test/app/client/fixtures.ts index e2bc6e2cc..ac6cd726b 100644 --- a/test/app/client/fixtures.ts +++ b/test/app/client/fixtures.ts @@ -315,7 +315,7 @@ export const editConsultation = async ( if (save) { await user.click(await findByRole('button', {name: 'save'})); - await findByRole('button', {name: 'saved'}); + await findByRole('button', {name: 'saved'}, {timeout: 5000}); } };