From bfcc24eac08240010740d7036286043dda413a92 Mon Sep 17 00:00:00 2001 From: fuomag9 <1580624+fuomag9@users.noreply.github.com> Date: Thu, 12 Mar 2026 01:33:17 +0100 Subject: [PATCH] test: add iPhone 15 Playwright project --- tests/playwright.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/playwright.config.ts b/tests/playwright.config.ts index 79b8fd77..137c57d3 100644 --- a/tests/playwright.config.ts +++ b/tests/playwright.config.ts @@ -20,5 +20,9 @@ export default defineConfig({ name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, + { + name: 'mobile-iphone', + use: { ...devices['iPhone 15'] }, + }, ], });