* Main test runner.
()
| 250 | * Main test runner. |
| 251 | */ |
| 252 | async function main(): Promise<void> { |
| 253 | const configPath: string = SearchConfigTest.findConfigPath(); |
| 254 | const agent: Agent = await Agent.create(configPath); |
| 255 | const test = new SearchConfigTest(agent, configPath); |
| 256 | await test.runAll(); |
| 257 | } |
| 258 | |
| 259 | // Run tests |
| 260 | main().catch((err: unknown) => { |
no test coverage detected