diff --git a/tests/playwright/tests/db/filters.spec.ts b/tests/playwright/tests/db/filters.spec.ts index 55ec5c7e7c..4a56c34d4d 100644 --- a/tests/playwright/tests/db/filters.spec.ts +++ b/tests/playwright/tests/db/filters.spec.ts @@ -7,6 +7,7 @@ import { Api } from 'nocodb-sdk'; import { rowMixedValue } from '../../setup/xcdb-records'; import dayjs from 'dayjs'; import { createDemoTable } from '../../setup/demoTable'; +import { isPg } from '../../setup/db'; let dashboard: DashboardPage, toolbar: ToolbarPage; let context: any; @@ -1162,6 +1163,10 @@ test.describe('Filter Tests: Filter groups', () => { }); test('Filter: Empty filters', async () => { + if (isPg(context)) { + test.skip(); + } + await dashboard.closeTab({ title: 'Team & Auth' }); await dashboard.treeView.openTable({ title: 'Country', networkResponse: false });