Revision a9741e69d2c28e3ee10731ad29a246a351b1426b authored by Andrew Scott on 15 February 2024, 19:29:51 UTC, committed by Alex Rickabaugh on 20 February 2024, 17:33:16 UTC
Deprecate `RouterTestingModule` as it is no longer needed or useful and
is not actively maintained.

fixes #54461

PR Close #54466
1 parent fcfef52
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