Browse Source

add back Chrome & Mobile Safari for testing

deep_linking
Trent Larson 1 week ago
parent
commit
42413045c5
  1. 17
      playwright.config-local.ts

17
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 */
/**

Loading…
Cancel
Save