(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions)
| 75 | test.skip(name, () => run(value, testLayer), opts) |
| 76 | |
| 77 | const live = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) => |
| 78 | test(name, () => run(value, liveLayer), opts) |
| 79 | |
| 80 | live.only = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) => |
| 81 | test.only(name, () => run(value, liveLayer), opts) |
no test coverage detected