(...scenarioOptions: (string | undefined)[])
| 62 | } |
| 63 | |
| 64 | export async function getTestInfo(...scenarioOptions: (string | undefined)[]) { |
| 65 | for (const each of scenarioOptions) { |
| 66 | if (each) { |
| 67 | const result = await getScenarioInfo(each); |
| 68 | if (result) { |
| 69 | return result; |
| 70 | } |
| 71 | } |
| 72 | } |
| 73 | return undefined; |
| 74 | } |
| 75 | |
| 76 | export function run (testsRoot: string, cb: (error: any, failures?: number) => void): void { |
| 77 | /** |
no test coverage detected