From 81730ebd3eb34a6bc4d42dd1b4e8d57832d16189 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Sun, 31 Jan 2021 10:48:33 -0800 Subject: [PATCH] Document how to run a single test (#352) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 1e14295414d8..17856884d9b6 100644 --- a/README.md +++ b/README.md @@ -25,3 +25,7 @@ pnpm build ``` You should now be able to run the [examples](examples) by navigating to one of the directories and doing `pnpm dev`. + +## Testing + +Run `pnpm test` to run the tests from all subpackages. Browser tests live in subpackages of `test/` such as `test/apps/basics/`. To run a single test, open up the file and change `test` to `test.only` for the relevant test.