puppeteer: Disable flaky administrative UI test.

This commit is contained in:
Tim Abbott 2024-02-07 09:39:39 -08:00
parent d015a8ca52
commit ea89a4c6f7
1 changed files with 3 additions and 1 deletions

View File

@ -147,7 +147,9 @@ async function test_set_new_user_threshold_to_N_days(page: Page): Promise<void>
async function test_organization_permissions(page: Page): Promise<void> {
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);