Revision 372dd0ab7dbbfd509c9905eae8e02da12dce502e authored by Alvaro Junqueira on 23 October 2023, 10:52:42 UTC, committed by Dylan Hunn on 25 October 2023, 16:35:22 UTC
1 parent 3afee87
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