(givenTitle: string | undefined, ...args: Args)
| 128 | export interface AvaMacro<Args extends any[] = any[], Ctx = unknown> { |
| 129 | (test: ExecutionContext<Ctx>, ...args: Args): Promise<void>; |
| 130 | title?(givenTitle: string | undefined, ...args: Args): string; |
| 131 | } |
| 132 | |
| 133 | function createTestInterface<Context>(opts: { |