()
| 187 | } |
| 188 | |
| 189 | function resetState() { |
| 190 | return Effect.promise(async () => { |
| 191 | await disposeAllInstances() |
| 192 | await resetDatabase() |
| 193 | }) |
| 194 | } |
| 195 | |
| 196 | function httpapi<A, E>(name: string, effect: Effect.Effect<A, E, TestScope>) { |
| 197 | it.live(name, effect) |
nothing calls this directly
no test coverage detected