(
config: Config,
projects: Array<[string, ProjectConfig]>,
overrides: TestConfigOverrides = {}
)
| 216 | } |
| 217 | |
| 218 | async function saveTestConfig( |
| 219 | config: Config, |
| 220 | projects: Array<[string, ProjectConfig]>, |
| 221 | overrides: TestConfigOverrides = {} |
| 222 | ): Promise<void> { |
| 223 | await config.saveConfig({ |
| 224 | projects: new Map(projects), |
| 225 | ...overrides, |
| 226 | }); |
| 227 | } |
| 228 | |
| 229 | async function saveWorkspaces( |
| 230 | config: Config, |
no test coverage detected