(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions)
| 66 | |
| 67 | const make = <R, E>(testLayer: Layer.Layer<R, E>, liveLayer: Layer.Layer<R, E>, run: Runner = isolatedRun) => { |
| 68 | const effect = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) => |
| 69 | test(name, () => run(value, testLayer), opts) |
| 70 | |
| 71 | effect.only = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) => |
| 72 | test.only(name, () => run(value, testLayer), opts) |