From 6a14695fda3b2bbfc006ef3d5598c3adedad8215 Mon Sep 17 00:00:00 2001 From: Fernando Date: Wed, 6 Mar 2024 15:07:05 +0900 Subject: [PATCH] chore: added test section to README.md --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index f5bdeee..fb15148 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,22 @@ This template repository includes support for the following: - Environment Variables - Conventional Commits - Automatic deployment to Cloudflare Pages + +## Testing + +### Cypress +To test with Cypress Studio UI, run +```shell +yarn cy:open +``` + +Otherwise to simply run the tests through the console, run +```shell +yarn cy:run +``` + +### Jest +To start Jest tests, run +```shell +yarn test +```