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
It is very easy to run a test twice:
module Main exposing (..) import Test exposing (Test) import Expect a = Test.test "a" (\_ -> Expect.pass) b = Test.test "b" (\_ -> Expect.pass) tests : Test tests = Test.describe "blah blah" [ a , b ]
Will run a and b twice:
a
b
Compiling > Starting tests elm-test 0.19.1-revision6 ------------------------- Running 4 tests. To reproduce these results, run: elm-test --fuzz 100 --seed 148067075282531 TEST RUN PASSED Duration: 121 ms Passed: 4 Failed: 0
This is wasteful, I wonder if we can detect this and give a helpful warning (probably an error next MAJOR release)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It is very easy to run a test twice:
Will run
a
andb
twice:This is wasteful, I wonder if we can detect this and give a helpful warning (probably an error next MAJOR release)
The text was updated successfully, but these errors were encountered: