From 136f1d5531d138e0b81e206ed20d0eaa3377a415 Mon Sep 17 00:00:00 2001 From: Eric Jinks <3147296+Jinksi@users.noreply.github.com> Date: Tue, 4 Jun 2024 15:04:28 +1000 Subject: [PATCH 1/2] Skip flaky e2e test `payment gateways disable confirmation` --- .../merchant/merchant-payment-gateways-confirmation.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/e2e-pw/specs/merchant/merchant-payment-gateways-confirmation.spec.ts b/tests/e2e-pw/specs/merchant/merchant-payment-gateways-confirmation.spec.ts index 6197cfa5fcb..f4981c22798 100644 --- a/tests/e2e-pw/specs/merchant/merchant-payment-gateways-confirmation.spec.ts +++ b/tests/e2e-pw/specs/merchant/merchant-payment-gateways-confirmation.spec.ts @@ -8,7 +8,8 @@ import { test, expect, Page } from '@playwright/test'; */ import { useMerchant } from '../../utils/helpers'; -test.describe( 'payment gateways disable confirmation', () => { +// Skipping the test for now as it is flaky on GH action runs. See #8875. +test.skip( 'payment gateways disable confirmation', () => { useMerchant(); const getToggle = ( page: Page ) => From 0f97e29917604ffa60b697ea28ec0bba6ece2ed2 Mon Sep 17 00:00:00 2001 From: Eric Jinks <3147296+Jinksi@users.noreply.github.com> Date: Tue, 4 Jun 2024 15:05:16 +1000 Subject: [PATCH 2/2] Add placeholder changelog entry --- ...able-flaky-e2e-test-payment-gateways-disable-confirmation | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 changelog/dev-8875-disable-flaky-e2e-test-payment-gateways-disable-confirmation diff --git a/changelog/dev-8875-disable-flaky-e2e-test-payment-gateways-disable-confirmation b/changelog/dev-8875-disable-flaky-e2e-test-payment-gateways-disable-confirmation new file mode 100644 index 00000000000..7d97fa86fc3 --- /dev/null +++ b/changelog/dev-8875-disable-flaky-e2e-test-payment-gateways-disable-confirmation @@ -0,0 +1,5 @@ +Significance: patch +Type: dev +Comment: Not user-facing: disable flaky playwright e2e test 'payment gateways disable confirmation' + +