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