Richard Feldman

Results 267 comments of Richard Feldman

Yeah, we've run afoul of this with integration tests - the test runner "types" into the input box too fast, so things sometimes get out of sync (but not always...

@TheSeamau5 is this on your radar? Would be happy to make a PR for it. :smiley:

@mgold updating the elm-check fork is blocked on updating the elm-random-extra fork, as some breaking Core changes to Random in 0.16 make for a nontrivial upgrade path there.

Great to see you again @TheSeamau5! :smiley_cat: :tada: :grinning:

Agree with these, except that "View test results as JSON" really wants to be "view test results as [JUnit XML format](http://help.catchsoftware.com/display/ET/JUnit+Format)." That's what CI servers (we use [Jenkins](https://jenkins-ci.org/) at work)...

:+1: Thanks for the heads-up! As it happens, I will be writing a bunch of `elm-check` tests this week. :smile_cat:

For what it's worth, when I use `elm-check` from within `elm-test` I use this helper function: ``` elm runCount = 100 seed = 1337 it : String -> (a ->...

In general I prefer to have investigators that explicitly incorporate likely-to-break values...in fact, come to think of it, I'd like to include 0 in the mix here too. :wink:

I like it! I do think zero is good to include anyway, because shrinking only comes up of there's a failure in the first place; if a test passes for...