diff --git a/examples/simple/playwright.config.ts b/examples/simple/playwright.config.ts index e84be64e..508f4b6b 100644 --- a/examples/simple/playwright.config.ts +++ b/examples/simple/playwright.config.ts @@ -62,12 +62,6 @@ const config: PlaywrightTestConfig = { ...devices["Desktop Firefox"], }, }, - { - name: "Desktop Safari", - use: { - ...devices["Desktop Safari"], - }, - }, // Test against mobile viewports. { name: "Mobile Chrome", @@ -75,10 +69,6 @@ const config: PlaywrightTestConfig = { ...devices["Pixel 5"], }, }, - { - name: "Mobile Safari", - use: devices["iPhone 12"], - }, ], }; export default config;