* Asserts that `Deno.test` is called with just the name and function 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,
)
| 188 | * This is used to reduce code duplication when testing calling `it` with different call signatures. |
| 189 | */ |
| 190 | async function assertMinimumOptions( |
| 191 | cb: (fn: Spy) => void, |
| 192 | ) { |
| 193 | await assertOptions({}, cb); |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Asserts that `Deno.test` is called with all of the options for the `it` call in the callback function. |
no test coverage detected