From ea89a4c6f79cd13d258fbee0825459d8002b0afe Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 7 Feb 2024 09:39:39 -0800 Subject: [PATCH] puppeteer: Disable flaky administrative UI test. --- web/e2e-tests/admin.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/e2e-tests/admin.test.ts b/web/e2e-tests/admin.test.ts index 7fe686bede..65f7a02135 100644 --- a/web/e2e-tests/admin.test.ts +++ b/web/e2e-tests/admin.test.ts @@ -147,7 +147,9 @@ async function test_set_new_user_threshold_to_N_days(page: Page): Promise async function test_organization_permissions(page: Page): Promise { await page.click("li[data-section='organization-permissions']"); - await test_changing_create_streams_and_invite_to_stream_policies(page); + // Test temporarily disabled 2024-02-07 due to nondeterminsitic failures. + // See https://chat.zulip.org/#narrow/stream/43-automated-testing/topic/main.20failing/near/1733342 + console.log("Skipping", test_changing_create_streams_and_invite_to_stream_policies); await test_set_new_user_threshold_to_three_days(page); await test_set_new_user_threshold_to_N_days(page);