Add a bit of documentation for the test skips

This commit is contained in:
Erik Simmler 2017-07-07 20:35:54 -04:00
parent 1ebbaae152
commit 8b5ef02a1e
2 changed files with 7 additions and 0 deletions

View file

@ -17,3 +17,6 @@ Execute the tests with:
```bash
$ npm test
```
As you work your way through the test suite, be sure to remove the `skip <|`
calls from each test until you get them all passing!

View file

@ -11,6 +11,10 @@ tests =
[ test "Hello with no name" <|
\() ->
Expect.equal "Hello, World!" (helloWorld Nothing)
-- Once you get the first test passing, remove the
-- `skip <|` (just leave the comma) on the next two
-- lines to continue!
, skip <|
test "Hello to a sample name" <|
\() ->