From f7838761663aa7abb55fe018c9777645af216397 Mon Sep 17 00:00:00 2001 From: Vadim Stepanov Date: Wed, 7 Aug 2024 13:08:12 +0100 Subject: [PATCH] Fix e2e test (#4786) https://github.com/grafana/oncall/pull/4785 continued --- grafana-plugin/e2e-tests/utils/phone.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana-plugin/e2e-tests/utils/phone.ts b/grafana-plugin/e2e-tests/utils/phone.ts index 765687a4..4da46954 100644 --- a/grafana-plugin/e2e-tests/utils/phone.ts +++ b/grafana-plugin/e2e-tests/utils/phone.ts @@ -38,7 +38,7 @@ export const waitForSms = async (): Promise => { // only start waiting for smses that would've been received after this function has been invoked since: new Date(), phoneNumberId: phoneNumber.id, - timeout: 30_000, + timeout: 180_000, // Wait for 3 minutes as SMS notifications are bundled and can take 2+ minutes to arrive }, }); return sms.body;