Max Goldstein
Max Goldstein
Yes, see #67.
I don't think I did but they're trivial to implement. But what about something more specialized? ```elm [ test "Can decode a category with a learning path" categoryJson |> Expect.decodableBy...
Richard, `decodableBy` would fail if the JSON decoder fails, it's strictly less test code... but Noah's point about wanting a more general function is valid. This is a reversal of...
Marking as "out of scope" to indicate upstream (language) issue.
I agree with @drathier that the library should expose an `equals` function ([example](http://package.elm-lang.org/packages/mgold/elm-animation/1.0.5/Animation#equals)) that returns a bool. ([`Order`](http://package.elm-lang.org/packages/elm-lang/core/5.1.1/Basics#Order) is another option if your things can be ordered.) It's weird for...
> I keep test helpers in a separate module so that those helpers and their dependencies don't get compiled into apps. I'm not sure if a separate module works for...
Related to #178, #176?
@battermann Any new here?
It's an interesting idea. * I know some people have had issues importing their main module for testing. It sounds like you'd have to do that to use this test,...
> This can be achieved with a Msg fuzzer not containing this particular Msg, right? Exactly. > Do we need [hooks]? I don't think so. We're not running any commands,...