From 0f68c376792993a46cb8a56e70a8b51eaebccca8 Mon Sep 17 00:00:00 2001 From: Nick Taylor Date: Thu, 28 May 2020 10:08:16 -0400 Subject: [PATCH] Fixed a typo and broken image in the frontent tests docs. (#8109) --- .../jest-watch-mode-screenshot.png | Bin docs/tests/frontend-tests.md | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename docs/{tests => .static}/jest-watch-mode-screenshot.png (100%) diff --git a/docs/tests/jest-watch-mode-screenshot.png b/docs/.static/jest-watch-mode-screenshot.png similarity index 100% rename from docs/tests/jest-watch-mode-screenshot.png rename to docs/.static/jest-watch-mode-screenshot.png diff --git a/docs/tests/frontend-tests.md b/docs/tests/frontend-tests.md index b223c9fe5..d7a66ba8e 100644 --- a/docs/tests/frontend-tests.md +++ b/docs/tests/frontend-tests.md @@ -43,7 +43,7 @@ npx jest app/javascript/ ## Running Tests in Watch Mode -You can runthe frontend test suite in watch mode by running one of the following +You can run frontend tests in watch mode by running one of the following commands: ```shell @@ -61,7 +61,7 @@ filtering tests. These filtering options are enhanced via the [jest-watch-typeahead](https://github.com/jest-community/jest-watch-typeahead/blob/master/README.md) watch plugin. It allows you to filter by test filename or test name. -![Screenshot of the jest watch menu](./jest-watch-mode-screenshot.png) +![Screenshot of the jest watch menu](/jest-watch-mode-screenshot.png) ## Debugging a Test @@ -82,4 +82,4 @@ If tests require utility modules, create them in a `utilities` folder under the test suite. You can also debug jest in your favorite editor. See the -[Debugging](../frontend/debugging.md) section of the frontend documentation. +[Debugging](/frontend/debugging/) section of the frontend documentation.