diff options
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 66355404a..3a3cd5400 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -54,9 +54,10 @@ DEBUG=vite:[name] astro dev # debug specific process, e.g. "vite:deps" or "vit ```shell # run this in the top-level project root to run all tests yarn test -# run only a few tests, great for working on a single feature -# (example - `yarn test -g "RSS"` runs `astro-rss.test.js`) -yarn test -g "$STRING_MATCH" +# run only a few tests, based on describe() or it() string match +# great for development, and working on a single feature! +# (example - `yarn test:match "RSS"` runs tests in `astro-rss.test.js`) +yarn test:match "$STRING_MATCH" ``` ### Other useful commands |