From aae586852f4c8883164e81c8e8bcf41c63c59964 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 3 Apr 2026 15:51:05 -0700 Subject: [PATCH] =?UTF-8?q?chore(config):=20=F0=9F=94=A7=20Update=20enviro?= =?UTF-8?q?nment=20variable=20defaults=20and=20validation=20rules?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- src/config.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/config.ts b/src/config.ts index 73e6f86..0843a16 100644 --- a/src/config.ts +++ b/src/config.ts @@ -56,6 +56,7 @@ export const commonDevices = { export type DevicePreset = | 'desktop' | 'mobile' + | 'mobile-chrome-only' | 'tablet' | 'obs-overlay' | 'chromium-only' @@ -233,6 +234,14 @@ function getDeviceProjects( dependencies: setupDependencies, }, ], + 'mobile-chrome-only': [ + { + name: 'mobile-chrome', + use: { ...devices['Pixel 5'] }, + testMatch: match, + dependencies: setupDependencies, + }, + ], tablet: [ { name: 'ipad',