Browse Source

Merge pull request #8914 from nocodb/test/mfe

test: disable MFE tests for SQLite & MySQL
pull/8950/head
Ramesh Mane 5 months ago committed by GitHub
parent
commit
aca5658cbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      tests/playwright/tests/db/features/multiFieldEditor.spec.ts

2
tests/playwright/tests/db/features/multiFieldEditor.spec.ts

@ -4,6 +4,7 @@ import setup, { unsetup } from '../../../setup';
import { FieldsPage } from '../../../pages/Dashboard/Details/FieldsPage';
import { getTextExcludeIconText } from '../../utils/general';
import { UITypes } from 'nocodb-sdk';
import { enableQuickRun } from '../../../setup/db';
const allFieldList = [
{
@ -235,6 +236,7 @@ test.describe('Multi Field Editor', () => {
});
test('Field operations: CopyId, Duplicate, InsertAbove, InsertBelow, Delete, Hide', async () => {
if (enableQuickRun()) test.skip();
// Add New Field
await fields.createOrUpdate({ title: defaultFieldName });

Loading…
Cancel
Save