(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions)
| 30 | test.skip(name, () => run(value, testLayer), opts) |
| 31 | |
| 32 | const live = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) => |
| 33 | test(name, () => run(value, liveLayer), opts) |
| 34 | |
| 35 | live.only = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) => |
| 36 | test.only(name, () => run(value, liveLayer), opts) |