(config: ResolvingChromeConfiguration)
| 963 | } |
| 964 | |
| 965 | export function applyChromeDefaults(config: ResolvingChromeConfiguration): AnyChromeConfiguration { |
| 966 | return config.request === 'attach' |
| 967 | ? { ...chromeAttachConfigDefaults, ...config } |
| 968 | : { ...chromeLaunchConfigDefaults, ...config }; |
| 969 | } |
| 970 | |
| 971 | export function applyEdgeDefaults(config: ResolvingEdgeConfiguration): AnyEdgeConfiguration { |
| 972 | return config.request === 'attach' |