From 023920733911726d6bc6dd54c8f8018c4f20e388 Mon Sep 17 00:00:00 2001 From: starbirdtech383 Date: Fri, 5 May 2023 03:13:33 +0530 Subject: [PATCH] remove test.only from playwright tests --- tests/playwright/tests/db/projectOperations.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/tests/db/projectOperations.spec.ts b/tests/playwright/tests/db/projectOperations.spec.ts index 09ce7273ed..b06cca7a5f 100644 --- a/tests/playwright/tests/db/projectOperations.spec.ts +++ b/tests/playwright/tests/db/projectOperations.spec.ts @@ -63,7 +63,7 @@ test.describe('Project operations', () => { await projectPage.deleteProject({ title: 'project-rename', withoutPrefix: true }); }); - test.only('project_duplicate', async () => { + test('project_duplicate', async () => { // if project already exists, delete it to avoid test failures due to residual data const testProjectName = 'project-to-imexp'; const dupeProjectName: string = testProjectName + ' copy';