(input?: Parameters<SessionNs.Interface["create"]>[0])
| 21 | const itWorkspaces = testEffect(layer(true)) |
| 22 | |
| 23 | const withSession = (input?: Parameters<SessionNs.Interface["create"]>[0]) => |
| 24 | Effect.acquireRelease(SessionNs.use.create(input), (created) => |
| 25 | SessionNs.Service.use((session) => session.remove(created.id).pipe(Effect.ignore)), |
| 26 | ) |
| 27 | |
| 28 | afterEach(async () => { |
| 29 | await disposeAllInstances() |
no test coverage detected