| 18 | const RESULTS_DIR = join(__dirname, 'results'); |
| 19 | |
| 20 | interface SuiteResult { |
| 21 | name: string; |
| 22 | passed: number; |
| 23 | total: number; |
| 24 | failures: string[]; |
| 25 | duration: number; |
| 26 | } |
| 27 | |
| 28 | function runSuite(name: string, script: string): SuiteResult { |
| 29 | const start = Date.now(); |
nothing calls this directly
no outgoing calls
no test coverage detected