diff --git a/tests/SeedTests.elm b/tests/SeedTests.elm index 4b8b0aa..12291b1 100644 --- a/tests/SeedTests.elm +++ b/tests/SeedTests.elm @@ -13,7 +13,7 @@ fixedSeed = expectedNum : Int expectedNum = - 1083264770 + -2287493601 {-| Most of the tests will use this, but we won't run it directly. @@ -69,4 +69,9 @@ tests = Expect.pass ] ] + , describe "Fuzz tests with different outer describe texts get different seeds" + [ fuzz int "It receives the expected number" <| + \num -> + Expect.equal num -3255451976 + ] ]