diff --git a/tests/playwright/tests/db/columns/columnLinkToAnotherRecord.spec.ts b/tests/playwright/tests/db/columns/columnLinkToAnotherRecord.spec.ts index 6234130247..af60dd5a46 100644 --- a/tests/playwright/tests/db/columns/columnLinkToAnotherRecord.spec.ts +++ b/tests/playwright/tests/db/columns/columnLinkToAnotherRecord.spec.ts @@ -1,8 +1,11 @@ import { test } from '@playwright/test'; import { DashboardPage } from '../../../pages/Dashboard'; import setup, { unsetup } from '../../../setup'; +import { enableQuickRun } from '../../../setup/db'; test.describe('LTAR create & update', () => { + if (enableQuickRun()) test.skip(); + let dashboard: DashboardPage; let context: any;