(name, self, timeout)
| 94 | ) => pipe(Effect.suspend(() => self(...args)), mapEffect, runTest(ctx)) |
| 95 | |
| 96 | const f: Vitest.Vitest.Test<R> = (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)) |
no test coverage detected