Revision 43b604bedf48e18d944b6a27f7a315f01dc3662f authored by Angular Robot on 29 April 2024, 07:07:07 UTC, committed by Andrew Kushnir on 30 April 2024, 21:04:00 UTC
See associated pull request for more information.

PR Close #55575
1 parent e7225dd
Raw File
browser-providers.conf.d.ts
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;
back to top