(cases)
| 109 | it.only(name, testOptions(timeout), (ctx) => run(ctx, [ctx], self)) |
| 110 | |
| 111 | const each: Vitest.Vitest.Tester<R>["each"] = (cases) => (name, self, timeout) => |
| 112 | it.for(cases)( |
| 113 | name, |
| 114 | testOptions(timeout), |
| 115 | (args, ctx) => run(ctx, [args], self) as any |
| 116 | ) |
| 117 | |
| 118 | const fails: Vitest.Vitest.Tester<R>["fails"] = (name, self, timeout) => |
| 119 | V.it.fails(name, testOptions(timeout), (ctx) => run(ctx, [ctx], self)) |
nothing calls this directly
no test coverage detected