* Asserts that `Deno.test` is called with all of the options for the `it` call in the callback function. * This is used to reduce code duplication when testing calling `it` with different call signatures.
(
cb: (fn: Spy) => void,
)
| 198 | * This is used to reduce code duplication when testing calling `it` with different call signatures. |
| 199 | */ |
| 200 | async function assertAllOptions( |
| 201 | cb: (fn: Spy) => void, |
| 202 | ) { |
| 203 | await assertOptions(baseOptions, cb); |
| 204 | } |
| 205 | |
| 206 | await t.step("signature 1", async (t) => { |
| 207 | await t.step( |
no test coverage detected