Revision 78e4af0f0a116ee800652800ea789f59682ece6b authored by Doug Parker on 25 April 2024, 18:32:31 UTC, committed by Andrew Kushnir on 01 May 2024, 00:02:00 UTC
1 parent 122478c
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