tests - allow to run our tests in chrome or msedge (#244969)

This commit is contained in:
Benjamin Pasero
2025-03-28 16:17:16 +01:00
committed by GitHub
parent 274cbfcb3d
commit 7d2083ed1d
4 changed files with 25 additions and 19 deletions

View File

@@ -29,7 +29,7 @@ export interface LaunchOptions {
readonly tracing?: boolean;
snapshots?: boolean;
readonly headless?: boolean;
readonly browser?: 'chromium' | 'webkit' | 'firefox';
readonly browser?: 'chromium' | 'webkit' | 'firefox' | 'chromium-msedge' | 'chromium-chrome';
readonly quality: Quality;
}