(name: string, fn: () => void | Promise<void>)
| 272 | // Export test functions |
| 273 | export const describe = (name: string, fn: () => void) => testRunner.describe(name, fn); |
| 274 | export const it = (name: string, fn: () => void | Promise<void>) => testRunner.it(name, fn); |
| 275 | export const expect = <T>(actual: T) => new Expect(actual); |
| 276 | |
| 277 | export type { TestResult, TestSuite }; |
no test coverage detected