(msg: string)
| 18 | const TEST_LIBRARY_SCRIPT_NAME = 'dev-container-features-test-lib'; |
| 19 | |
| 20 | function fail(msg: string) { |
| 21 | log(msg, { prefix: '[-]', error: true }); |
| 22 | process.exit(1); |
| 23 | } |
| 24 | |
| 25 | type Scenarios = { [key: string]: DevContainerConfig }; |
| 26 | type TestResult = { testName: string; result: boolean }; |
no test coverage detected