Browse Source

test: Disabled lookup dnd test for ee

pull/6561/head
Muhammed Mustafa 1 year ago
parent
commit
de784fc571
  1. 4
      tests/playwright/tests/db/columns/columnLtarDragdrop.spec.ts

4
tests/playwright/tests/db/columns/columnLtarDragdrop.spec.ts

@ -4,6 +4,7 @@ import { Api, UITypes } from 'nocodb-sdk';
import { DashboardPage } from '../../../pages/Dashboard';
import { GridPage } from '../../../pages/Dashboard/Grid';
import { getTextExcludeIconText } from '../../../tests/utils/general';
import { isEE } from '../../../setup/db';
let api: Api<any>;
const recordCount = 10;
@ -99,6 +100,9 @@ test.describe('Links', () => {
const linkField = await getTextExcludeIconText(columnAddModal.locator(`.ant-form-item-control-input`).nth(2));
const childColumn = await getTextExcludeIconText(columnAddModal.locator(`.ant-form-item-control-input`).nth(3));
// TODO: Handle this in EE
if (isEE()) return;
// validate
expect(columnType).toContain('Lookup');
expect(linkField).toContain('Table1List');

Loading…
Cancel
Save