Hi again, I'm having issues with the way do notation is compiled as tests, wondering if this is an issue or if there's something i could be doing differently
--| ```purescript run
--| > import Effect.Unsafe (unsafePerformEffect)
--| > import Effect.Console (log)
--| > unsafePerformEffect $ do
--| log "help!"
--| mempty
--| unit
--| ```
foo = "bar"
compiles to invalid test code:
main :: Spec Unit
main = describe "Test.DocTest.Effect.Worker" $ do
it "value spec in docs from: sendMsg" $ show (unsafePerformEffect $ do log "help!"
mempty) `shouldEqual` "unit"
pure unit
Hi again, I'm having issues with the way
donotation is compiled as tests, wondering if this is an issue or if there's something i could be doing differentlycompiles to invalid test code: