From 22a9c0e1cf38be077a761196fe0d97c0cd464f07 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Mon, 14 Nov 2022 10:50:42 +0530 Subject: [PATCH] refactor(playwright): remove `only` from test Signed-off-by: Pranav C --- tests/playwright/tests/authChangePassword.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/tests/authChangePassword.spec.ts b/tests/playwright/tests/authChangePassword.spec.ts index 3b6fa2a028..b348f3b0a9 100644 --- a/tests/playwright/tests/authChangePassword.spec.ts +++ b/tests/playwright/tests/authChangePassword.spec.ts @@ -18,7 +18,7 @@ test.describe('Auth', () => { settings = dashboard.settings; }); - test.only('Change password', async ({ page }) => { + test('Change password', async ({ page }) => { await dashboard.closeTab({ title: 'Team & Auth' }); await dashboard.gotoSettings(); await settings.selectTab({ tab: SettingTab.TeamAuth });