From c728a0ad460bbec62fbf0a056e5a025da0d02ced Mon Sep 17 00:00:00 2001 From: Vadim Stepanov Date: Wed, 7 Aug 2024 11:51:44 +0100 Subject: [PATCH] Fix e2e test (#4785) SMS message text was changed in https://github.com/grafana/oncall/pull/4624 --- grafana-plugin/e2e-tests/alerts/sms.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana-plugin/e2e-tests/alerts/sms.test.ts b/grafana-plugin/e2e-tests/alerts/sms.test.ts index 6c657611..97caa4f8 100644 --- a/grafana-plugin/e2e-tests/alerts/sms.test.ts +++ b/grafana-plugin/e2e-tests/alerts/sms.test.ts @@ -22,5 +22,5 @@ test('we can verify our phone number + receive an SMS alert @expensive', async ( const smsAlertNotification = await waitForSms(); expect(smsAlertNotification).toContain('OnCall'); - expect(smsAlertNotification).toContain('alert'); + expect(smsAlertNotification).toContain('Alert group'); });