()
| 123 | } |
| 124 | |
| 125 | async function main(): Promise<void> { |
| 126 | const configPath: string = GitWorktreeTest.findConfig(); |
| 127 | const agent: Agent = await Agent.create(configPath); |
| 128 | const test = new GitWorktreeTest(agent, configPath); |
| 129 | await test.runAll(); |
| 130 | } |
| 131 | |
| 132 | main().catch((err: unknown) => { |
| 133 | console.error("Test failed:", (err as Error).message); |
no test coverage detected