diff --git a/src/config/types.ts b/src/config/types.ts index 56c9962f8..06437233c 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -260,9 +260,13 @@ export interface SetsConfigParsed { browsers: Array; } +type PartialCommonConfig = Partial> & { + system?: Partial; +}; + // Only browsers desiredCapabilities are required in input config -export type ConfigInput = Partial & { - browsers: Record & { desiredCapabilities: WebdriverIO.Capabilities }>; +export type ConfigInput = Partial & { + browsers: Record; plugins?: Record; sets?: Record; prepareEnvironment?: () => void | null;