From 42413045c5aeb00fe9b57562fd8bbcdb0680ad2d Mon Sep 17 00:00:00 2001
From: Trent Larson <trent@trentlarson.com>
Date: Sun, 16 Mar 2025 17:05:27 -0600
Subject: [PATCH] add back Chrome & Mobile Safari for testing

---
 playwright.config-local.ts | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/playwright.config-local.ts b/playwright.config-local.ts
index 15e844d2..ef2e651b 100644
--- a/playwright.config-local.ts
+++ b/playwright.config-local.ts
@@ -81,14 +81,27 @@ export default defineConfig({
       name: "Mobile Chrome",
       use: { ...devices["Pixel 5"] },
     },
+    {
+      name: "Mobile Safari",
+      use: { ...devices["iPhone 12"] },
+    },
 
     /* Test against branded browsers. */
 
+    // {
+    //   name: 'Microsoft Edge',
+    //   use: { ...devices['Desktop Edge'], channel: 'msedge' },
+    // },
+    {
+      name: "Google Chrome",
+      use: { ...devices["Desktop Chrome"], channel: "chrome" },
+    },
   ],
 
   /* Configure global timeout; default is 30000 milliseconds */
-  // the image upload will often not succeed at 5 seconds
-  timeout: 30000, // various tests fail at various times with 25000
+  // the image upload will often not succeed in 5 seconds
+  // 33-record-gift-x10.spec.ts:90:5 > Record 9 new gifts will often not succeed in 30 seconds
+  timeout: 35000, // various tests fail at various times with 25000
 
   /* Run your local dev server before starting the tests */
   /**