Revision 62be6802d37de52f374e4717df0b7fe07f60c2d4 authored by Joey Perrott on 15 February 2024, 19:21:04 UTC, committed by Andrew Kushnir on 15 February 2024, 20:20:40 UTC
With the correction of how local build linker interaction works the `aio_local_deps` flag is
no longer needed.

PR Close #54465
1 parent ee9c272
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