From 64e5c70fb34818ac7d8f87bc61781462991e2051 Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Mon, 3 Jan 2022 11:25:50 +0100 Subject: [PATCH] docs(local development): add refactor PR test note (#13335) --- docs/development/local-development.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/development/local-development.md b/docs/development/local-development.md index 8f1dbc209c0b4f..4585d3b6624fc7 100644 --- a/docs/development/local-development.md +++ b/docs/development/local-development.md @@ -120,6 +120,8 @@ You can run `yarn test` locally to test your code. We test all PRs using the same tests, run on GitHub Actions. `yarn test` runs an `eslint` check, a `prettier` check, a `type` check and then all the unit tests using `jest`. +Refactor PRs should ideally not change or remove tests (adding tests is OK). + ### Jest You can run just the Jest unit tests by running `yarn jest`.