From fc8f6d47eb0c31975c58ebd89ebc190755573d81 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Fri, 23 Jun 2023 16:14:57 +0530 Subject: [PATCH] chore: test title changes Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- tests/playwright/tests/db/bulkUpdate.spec.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/playwright/tests/db/bulkUpdate.spec.ts b/tests/playwright/tests/db/bulkUpdate.spec.ts index 5ed8161d05..c3b78d40a5 100644 --- a/tests/playwright/tests/db/bulkUpdate.spec.ts +++ b/tests/playwright/tests/db/bulkUpdate.spec.ts @@ -117,7 +117,7 @@ test.describe('Bulk update', () => { }); }); -test.describe('Bulk update - Number based', () => { +test.describe('Bulk update', () => { let dashboard: DashboardPage; let context: any; let api: Api; @@ -187,7 +187,7 @@ test.describe('Bulk update - Number based', () => { }); }); -test.describe('Bulk update - Select based', () => { +test.describe('Bulk update', () => { let dashboard: DashboardPage; let context: any; let api: Api; @@ -250,7 +250,7 @@ test.describe('Bulk update - Select based', () => { }); }); -test.describe('Bulk update - Miscellaneous', () => { +test.describe('Bulk update', () => { let dashboard: DashboardPage; let context: any; let api: Api; @@ -277,7 +277,7 @@ test.describe('Bulk update - Miscellaneous', () => { await dashboard.grid.updateAll(); }); - test('Miscellaneous', async () => { + test('Miscellaneous (Checkbox, attachment)', async () => { const fields = [ { title: 'Checkbox', value: 'true', type: 'checkbox' }, { title: 'Attachment', value: `${process.cwd()}/fixtures/sampleFiles/1.json`, type: 'attachment' }, @@ -313,7 +313,7 @@ test.describe('Bulk update - Miscellaneous', () => { }); }); -test.describe('Bulk update - DateTimeBased', () => { +test.describe('Bulk update', () => { let dashboard: DashboardPage; let context: any; let api: Api; @@ -340,7 +340,7 @@ test.describe('Bulk update - DateTimeBased', () => { await dashboard.grid.updateAll(); }); - test('dateTimeBased', async () => { + test('Date Time Based', async () => { const fields = [{ title: 'Date', value: '2024-08-04', type: 'date' }]; await updateBulkFields(fields);