(config: IConfiguration)
| 190 | } |
| 191 | |
| 192 | export async function reloadConfiguration(config: IConfiguration) { |
| 193 | Globals.mockConfiguration = config; |
| 194 | |
| 195 | const validatorResults = await ( |
| 196 | await import('../src/configuration/configuration') |
| 197 | ).configuration.load(); |
| 198 | for (const validatorResult of validatorResults.get()) { |
| 199 | console.warn(validatorResult); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Waits for the tabs to change after a command like 'gt' or 'gT' is run. |
no test coverage detected