mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
5a9059be38
This upgrades the Saucelabs Bazel step on CI to use the more efficient Saucelabs daemon PR Close #49200
21 lines
387 B
TypeScript
21 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;
|