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
{{ message }}
This repository has been archived by the owner on Oct 9, 2019. It is now read-only.
myFuzz:FuzzerIntmyFuzz =
int |> andThen (\_ -> frequency [])
Error message reads:
This test failed because it threw an exception: "Error: Ran into a `Debug.crash` in module `Fuzz.Internal` on line 63
The message provided by the code author is:
This shouldn't happen: Fuzz.Internal.unpackGenVal"
Looking at the code I don't think there's a ton we can do about this, but I wanted to report anyway. andThen, by its nature, ensures we only know whether a fuzzer is valid after running it which conflicts with the idea of fuzzer validness itself.
The text was updated successfully, but these errors were encountered:
↓ Example
✗ #160
This test failed because it threw an exception: "Error: Ran into a `Debug.crash` in module `Fuzz.Internal`
This was caused by the `case` expression between lines 54 and 59.
One of the branches ended with a crash and the following value got through:
Nothing
The message provided by the code author is:
Returning an invalid fuzzer from `andThen` is currently unsupported"
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This fuzzer will run into a Debug.crash:
Error message reads:
Looking at the code I don't think there's a ton we can do about this, but I wanted to report anyway.
andThen
, by its nature, ensures we only know whether a fuzzer is valid after running it which conflicts with the idea of fuzzer validness itself.The text was updated successfully, but these errors were encountered: