( cb: (fn: readonly [Spy, Spy]) => void, )
| 109 | } |
| 110 | |
| 111 | export async function assertMinimumDescribeOptions( |
| 112 | cb: (fn: readonly [Spy, Spy]) => void, |
| 113 | ) { |
| 114 | await assertDescribeOptions({ ignore: true }, cb); |
| 115 | } |
| 116 | |
| 117 | async function assertItOptions( |
| 118 | expectedOptions: Omit<Deno.TestDefinition, "name" | "fn">, |
no test coverage detected