(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions)
| 21 | |
| 22 | const make = <R, E>(testLayer: Layer.Layer<R, E>, liveLayer: Layer.Layer<R, E>) => { |
| 23 | const effect = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) => |
| 24 | test(name, () => run(value, testLayer), opts) |
| 25 | |
| 26 | effect.only = <A, E2>(name: string, value: Body<A, E2, R | Scope.Scope>, opts?: number | TestOptions) => |
| 27 | test.only(name, () => run(value, testLayer), opts) |