From 6bc786488af4b4ab200b9c3db1e0932851879f05 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Wed, 28 Jun 2023 14:58:23 +0800 Subject: [PATCH] chore(playwright): add test.slow --- tests/playwright/tests/db/01-webhook.spec.ts | 1 + tests/playwright/tests/db/pagination.spec.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/playwright/tests/db/01-webhook.spec.ts b/tests/playwright/tests/db/01-webhook.spec.ts index b02130544c..2b317db8a7 100644 --- a/tests/playwright/tests/db/01-webhook.spec.ts +++ b/tests/playwright/tests/db/01-webhook.spec.ts @@ -125,6 +125,7 @@ test.describe.serial('Webhook', () => { }); test('CRUD', async ({ request, page }) => { + test.slow(); // Waiting for the server to start await page.waitForTimeout(1000); diff --git a/tests/playwright/tests/db/pagination.spec.ts b/tests/playwright/tests/db/pagination.spec.ts index 45b7040c88..8fbca3d16c 100644 --- a/tests/playwright/tests/db/pagination.spec.ts +++ b/tests/playwright/tests/db/pagination.spec.ts @@ -12,6 +12,7 @@ test.describe('Grid pagination', () => { }); test('Access next page, prev page & offset page', async () => { + test.slow(); // close 'Team & Auth' tab await dashboard.closeTab({ title: 'Team & Auth' });