(condition)
| 100 | it.skip(name, testOptions(timeout), (ctx) => run(ctx, [ctx], self)) |
| 101 | |
| 102 | const skipIf: Vitest.Vitest.Tester<R>["skipIf"] = (condition) => (name, self, timeout) => |
| 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)) |
nothing calls this directly
no test coverage detected