aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-31 14:24:52 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-31 14:24:52 +0100
commit114eaa6d837222301fe51552b6b8b558258f8d11 (patch)
treea4cc3d4aa2e0dd0d8ffe6e78b0f5a9e29f76d783
parentbuild: Add watch:test command (diff)
downloadsophie-114eaa6d837222301fe51552b6b8b558258f8d11.tar.gz
sophie-114eaa6d837222301fe51552b6b8b558258f8d11.tar.zst
sophie-114eaa6d837222301fe51552b6b8b558258f8d11.zip
docs: Document test runner commands
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6f3a4c1..7fff645 100644
--- a/README.md
+++ b/README.md
@@ -21,6 +21,18 @@ To start a development instance of Sophie, which will reload on source changes,
21yarn watch 21yarn watch
22``` 22```
23 23
24To run all the tests, run
25
26```sh
27yarn test
28```
29
30or to automatically rerun tests for changed source files, run
31
32```sh
33yarn watch:test
34```
35
24To build the application in release mode, run 36To build the application in release mode, run
25 37
26``` sh 38``` sh