(condition)
| 103 | it.skipIf(condition)(name, testOptions(timeout), (ctx) => run(ctx, [ctx], self)) |
| 104 | |
| 105 | const runIf: Vitest.Vitest.Tester<R>["runIf"] = (condition) => (name, self, timeout) => |
| 106 | it.runIf(condition)(name, testOptions(timeout), (ctx) => run(ctx, [ctx], self)) |
| 107 | |
| 108 | const only: Vitest.Vitest.Tester<R>["only"] = (name, self, timeout) => |
| 109 | it.only(name, testOptions(timeout), (ctx) => run(ctx, [ctx], self)) |
nothing calls this directly
no test coverage detected