(self: State)
| 27 | const isActive = (self: State): boolean => self._tag === "Active" |
| 28 | const isChanged = (self: State): boolean => self._tag === "Changed" |
| 29 | const isClosed = (self: State): boolean => self._tag === "Closed" |
| 30 | |
| 31 | describe("SynchronizedRef", () => { |
| 32 | it.effect("get", () => |
no outgoing calls
no test coverage detected