mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This upgrades the Saucelabs Bazel step on CI to use the more efficient Saucelabs daemon PR Close #49200
20 lines
387 B
TypeScript
20 lines
387 B
TypeScript
type CustomLauncher = {
|
|
base: string;
|
|
browserName: string;
|
|
platformName: string;
|
|
platformVersion: string;
|
|
deviceName: string;
|
|
appiumVersion: string;
|
|
extendedDebugging: boolean;
|
|
}
|
|
|
|
type CustomLaunchers = {
|
|
[string]: CustomLauncher;
|
|
};
|
|
|
|
type SauceAliases = {
|
|
[string]: string[];
|
|
};
|
|
|
|
export const customLaunchers: CustomLaunchers;
|
|
export const sauceAliases: SauceAliases;
|