(it: Vitest.API)
| 293 | |
| 294 | /** @internal */ |
| 295 | export const makeMethods = (it: Vitest.API): Vitest.Vitest.Methods => |
| 296 | Object.assign(it, { |
| 297 | effect: makeTester<TestServices.TestServices>(Effect.provide(TestEnv), it), |
| 298 | scoped: makeTester<TestServices.TestServices | Scope.Scope>(flow(Effect.scoped, Effect.provide(TestEnv)), it), |
| 299 | live: makeTester<never>(identity, it), |
| 300 | scopedLive: makeTester<Scope.Scope>(Effect.scoped, it), |
| 301 | flakyTest, |
| 302 | layer, |
| 303 | prop |
| 304 | }) |
| 305 | |
| 306 | /** @internal */ |
| 307 | export const { |
no test coverage detected
searching dependent graphs…