You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Been using stack a little for work and comparing how it does things in comparison to mafia.
One of the nice things stack test is show the fully colourized and on-the-fly Hedgehog test output whereas mafia just prints it out the whole test output chunk once the test is complete.
The stack way is simply nicer and couldn't be too hard to do.
The text was updated successfully, but these errors were encountered:
The main issue here is that mafia test just calls cabal test which disconnects the tty, so hedgehog thinks that it's being piped to a file on disk.
To fix this without fixing it in cabal, we'd just have to read the test suites from the .cabal file and execute them manually. I believe mafia already depends on the Cabal library so parsing the .cabal file shouldn't be a big deal.
Been using stack a little for work and comparing how it does things in comparison to mafia.
One of the nice things
stack test
is show the fully colourized and on-the-fly Hedgehog test output whereas mafia just prints it out the whole test output chunk once the test is complete.The stack way is simply nicer and couldn't be too hard to do.
The text was updated successfully, but these errors were encountered: