Skip to content

Commit 597bd79

Browse files
committed
remove safari
1 parent c2aa0b7 commit 597bd79

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

testing/e2e/playwright.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ const baseURL = `http://localhost:${webPort}`;
2222

2323
const browsers: { target: BrowserTarget; use: Project['use'] }[] = [
2424
{ target: 'Desktop Chrome', use: { ...devices['Desktop Chrome'], channel: 'chromium', headless: true } },
25-
{ target: 'Desktop Firefox', use: { ...devices['Desktop Firefox'], headless: true } },
26-
{ target: 'Desktop Safari', use: devices['Desktop Safari'] }
25+
{ target: 'Desktop Firefox', use: { ...devices['Desktop Firefox'], headless: true } }
2726
] as const;
2827

2928
export default defineConfig({

testing/e2e/src/helpers/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ declare global {
1313
}
1414
}
1515

16-
export type BrowserTarget = 'Desktop Chrome' | 'Desktop Firefox' | 'Desktop Safari';
16+
export type BrowserTarget = 'Desktop Chrome' | 'Desktop Firefox';
1717

1818
export type ExtractParams<TPath extends string> = Split<TPath, '/'>[number] extends infer TUnion
1919
? TUnion extends `$${infer TParam}`

0 commit comments

Comments
 (0)