From ff1d35d6ec5684a316d45046b4c546c53065288c Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 30 Mar 2018 16:56:00 -0500 Subject: [PATCH] Add a link to the jest landing page --- javascript/test-coverage-stats-with-jest.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/javascript/test-coverage-stats-with-jest.md b/javascript/test-coverage-stats-with-jest.md index 865e431..453ae63 100644 --- a/javascript/test-coverage-stats-with-jest.md +++ b/javascript/test-coverage-stats-with-jest.md @@ -1,9 +1,10 @@ # Test Coverage Stats With Jest -Jest is a delightful tool for JavaScript testing from Facebook. As your -project evolves and you add tests (or perhaps choose to not add tests) you -may wonder what kind of test coverage you have. What is the overall -coverage? Which files are well covered and which are seriously lacking? +[Jest](https://facebook.github.io/jest/) is a delightful tool for JavaScript +testing from Facebook. As your project evolves and you add tests (or perhaps +choose to not add tests) you may wonder what kind of test coverage you have. +What is the overall coverage? Which files are well covered and which are +seriously lacking? Use the `--coverage` flag to get this information.