From 72ccf0f371f35975dc969edb1d8c96aa1733292a Mon Sep 17 00:00:00 2001 From: Max Goldstein Date: Sun, 3 Mar 2019 20:44:38 -0800 Subject: [PATCH] Remove reference to HTML runner in README. Fixes #73. --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index b3cec8e9..3ef88b65 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,6 @@ Check out [a large real-world test suite](https://github.com/rtfeldman/elm-css/t ### Running tests locally -There are several ways you can run tests locally: - -* [from your terminal](https://github.com/rtfeldman/node-test-runner) via `npm install -g elm-test` -* [from your browser](https://github.com/elm-community/html-test-runner) - Here's how to set up and run your tests using the CLI test runner: 1. Run `npm install -g elm-test` if you haven't already. @@ -63,6 +58,7 @@ Here's how to set up and run your tests using the CLI test runner: 6. Edit `tests/Example.elm` to introduce new tests. Hint: If you have dependencies add them via `elm-test install authorName/dependencyName`. +Bonus hint: Run `elm-test --watch` to rerun your tests whenever a file is saved. ### Running tests on CI