From cd2413cdac95a431589129f0ca475ca10d5eea26 Mon Sep 17 00:00:00 2001 From: shimks Date: Mon, 5 Mar 2018 12:37:38 -0500 Subject: [PATCH] apply more feedback --- pages/en/lb4/Testing-your-application.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pages/en/lb4/Testing-your-application.md b/pages/en/lb4/Testing-your-application.md index 679627ccc..aa8842f1a 100644 --- a/pages/en/lb4/Testing-your-application.md +++ b/pages/en/lb4/Testing-your-application.md @@ -54,11 +54,9 @@ integrates these packages and makes them easy to use together with LoopBack. ### Set up testing infrastructure with LoopBack CLI -LoopBack applications that have been generated by `lb4 app` or `lb4` -from `@loopback/cli` come with `@loopback/testlab` as a -developer dependency along with `mocha` (which is available through a CLI -prompt and enabled by default) so no other setup of testing infrastructure -is needed. +LoopBack application that have been generated using the `lb4 app` command from +`@loopback/cli` come with `@loopback/testlab` and `mocha` as a default, +so no other testing infrastructure setup is needed. ### Setup testing infrastructure manually @@ -79,7 +77,7 @@ Your `package.json` should then look something like this: "mocha": "^" }, "scripts": { - "test": "mocha --recursive \"DIST/test\"" + "test": "mocha --recursive \"dist/test\"" } // ... }