We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hspecWith
In server-test/Main.hs, hspecWith function is used. It is a legacy and runSpec should be used instead. (cf. https://hackage.haskell.org/package/hspec-core-2.7.1/docs/Test-Hspec-Core-Runner.html)
server-test/Main.hs
runSpec
On using runSpec, there is a point to be noted: It, unlike hspecWith, does not output an error exit-code when tests failed. The document said:
If you need this, you have to check the Summary yourself and act accordingly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
server-test/Main.hs
,hspecWith
function is used.It is a legacy and
runSpec
should be used instead.(cf. https://hackage.haskell.org/package/hspec-core-2.7.1/docs/Test-Hspec-Core-Runner.html)
On using
runSpec
, there is a point to be noted:It, unlike
hspecWith
, does not output an error exit-code when tests failed.The document said:
The text was updated successfully, but these errors were encountered: