| 16 | } |
| 17 | |
| 18 | export interface RuntimeAdapter { |
| 19 | setup(): Promise<void> |
| 20 | runBeforeAllHooks(): Promise<boolean> |
| 21 | runTestCases(assembledTestCases: ReadonlyArray<AssembledTestCase>): Promise<boolean> |
| 22 | runAfterAllHooks(): Promise<boolean> |
| 23 | teardown(): Promise<void> |
| 24 | } |
no outgoing calls
no test coverage detected