elm-test-rs icon indicating copy to clipboard operation
elm-test-rs copied to clipboard

Fast and portable executable to run your Elm tests

Results 14 elm-test-rs issues
Sort by recently updated
recently updated
newest added

When I save a file after a change, I fairly frequently get a crash message from `elm-test-rs --watch` instead of test output. The workaround is just to save again —...

Bumps [webpki](https://github.com/briansmith/webpki) from 0.22.0 to 0.22.2. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=webpki&package-manager=cargo&previous-version=0.22.0&new-version=0.22.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

When running `elm-test-rs make --watch`, the output when the code is compiling is a bit unhelpful. 1) If you start running it when code compiles, it looks like it’s hanging...

help wanted

I have a workflow where I would prefer to have `elm-test-rs` output the logs from `Debug.log` (for a subset of tests) also for succeeding tests, to inspect how some Elm...

I've noticed that the Debug.log messages aren't shown until the tests are completed. Unfortunately this means that if I have a test that hangs I need to kill the test...

This is a proof of concept for now.

This is a question from @jxxcarlson on slack about the following message: > "elm-test-rs" can't be opened because Apple cannot check it for malicious software. The solution seems to be...

There might be some interesting insight for future elm-test-rs dev https://nexte.st/

The elm main for the reporter doesn't need to embed any runtime parameter, it can get all that is needed from flags and ports. This means we could compile it...

A progress bar is useful to get a timing and progress estimate at a glance for long running fuzz tests. Here is an example implementation of a simple progress bar....