(
cb: (t: ExecutionContext<Context>) => Promise<T>
)
| 110 | beforeAll(cb: (t: ExecutionContext<Context>) => Promise<void>): void; |
| 111 | beforeEach(cb: (t: ExecutionContext<Context>) => Promise<void>): void; |
| 112 | context<T extends object | void>( |
| 113 | cb: (t: ExecutionContext<Context>) => Promise<T> |
| 114 | ): TestInterface<Context & T>; |
| 115 | suite(title: string, cb: (test: TestInterface<Context>) => void): void; |
no outgoing calls
no test coverage detected