From 71546a5801630e2e7319e5a3ac54ff9bd842b4b2 Mon Sep 17 00:00:00 2001 From: Niraj Date: Mon, 18 Nov 2024 15:11:20 +0545 Subject: [PATCH] chore: add logged in test for pixel 5 device --- integration_test/playwright.config.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/integration_test/playwright.config.ts b/integration_test/playwright.config.ts index dad3015..3331500 100644 --- a/integration_test/playwright.config.ts +++ b/integration_test/playwright.config.ts @@ -56,7 +56,12 @@ export default defineConfig({ testMatch: '**/*independent.spec.ts', use: { ...devices['Desktop Chrome'] }, }, - + { + name: 'loggedin (mobile)', + use: { ...devices['Pixel 5'] }, + testIgnore: ['**/*.independent.spec.ts'], + dependencies: environments.ci ? ['auth setup'] : [], + }, { name: 'mobile', testMatch: '**/*independent.spec.ts',