Revision 05657cfde4514671570a674a4be83989729e2740 authored by Jessica Janiuk on 19 July 2023, 19:30:17 UTC, committed by Jessica Janiuk on 19 July 2023, 19:32:42 UTC
1 parent 16e132f
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