From 59d8c60f81900bb608a24425294935233338f0f1 Mon Sep 17 00:00:00 2001 From: Agustina Chaer Date: Sun, 19 May 2019 11:15:30 -0300 Subject: [PATCH] remove mocha form docs (getting started) (#1729) --- docs/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index b1a86d22c..42d9626ff 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -139,11 +139,11 @@ $ yarn run lint To launch unit tests: ```shell -$ yarn run test # Run unit tests with Mocha +$ yarn run test # Run unit tests with Jest $ yarn run test:watch # Launch unit test runner and start watching for changes ``` -By default, [Mocha](https://mochajs.org/) test runner is looking for test files +By default, [Jest](https://jestjs.io/) test runner is looking for test files matching the `src/**/*.test.js` pattern. Take a look at `src/components/Layout/Layout.test.js` as an example.