From 832a194e18e8c8b4a7c6945adf4ccb729f15f552 Mon Sep 17 00:00:00 2001 From: Yunus Date: Wed, 4 Dec 2024 23:29:15 +0700 Subject: [PATCH] Try check test e2e --- tests-e2e/switch-account.test.mts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests-e2e/switch-account.test.mts b/tests-e2e/switch-account.test.mts index b7f68f0..f30fb32 100644 --- a/tests-e2e/switch-account.test.mts +++ b/tests-e2e/switch-account.test.mts @@ -1,7 +1,9 @@ import { expect, test } from '@nuxt/test-utils/playwright' test('Add and switch account', async ({ page, goto, context }) => { - await goto('/apps') + await goto('/') + await page.getByText('Go To Apps').click() + await page.getByTestId('b_more_btn').click() await expect(page.getByText('(Current)')).toContainText("usertest1") await page.getByText('Add Account').click()