diff --git a/test/sort/e2e.spec.ts b/test/sort/e2e.spec.ts index 870c7950237..e1a98de674b 100644 --- a/test/sort/e2e.spec.ts +++ b/test/sort/e2e.spec.ts @@ -44,8 +44,10 @@ describe('Sort functionality', () => { // NOTES: It works for me in headed browser but not in headless, I don't know why. // If you are debugging this test, remember to press the seed button before each attempt. // assertRows contains expect - // eslint-disable-next-line playwright/expect-expect - test('Orderable collection', async () => { + + // TODO: This test is flaky and fails *most* of the time in CI. + // eslint-disable-next-line playwright/no-skipped-test, playwright/expect-expect + test.skip('Orderable collection', async () => { const url = new AdminUrlUtil(serverURL, orderableSlug) await page.goto(`${url.list}?sort=-_order`) await page.locator('.collection-list button', { hasText: 'Seed' }).click()