()
| 53 | } |
| 54 | |
| 55 | async run(): Promise<Result> { |
| 56 | const result: Result = {}; |
| 57 | for (const name in scenarios) { |
| 58 | result[name] = await this.runScenario(name, scenarios[name]); |
| 59 | } |
| 60 | return result; |
| 61 | } |
| 62 | |
| 63 | async runScenario( |
| 64 | name: string, |
no test coverage detected