From a1b46d4b62ee5756a420ab11b3126b9a6e2bc23b Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Mon, 24 Jun 2019 14:30:49 -0300 Subject: Update README test instructions Omit requiring mocha to be installed globally; this is not required for any of the listed commands. Also update the `lint` command to use the npm script, as the gulp command referenced doesn't exist. --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a61d23328..6a0f4fef3 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,11 @@ You can re-generate the docs locally by running `npm run doc`, and contributors ### Running Tests -Requires `mocha` installed. Run `npm install -g mocha`. - -Then just run `npm test`. +Run tests with `npm test`. You can also test with a continuously watching process, via `npm run watch`. -You can run the linter by itself with `gulp lint`. +You can run the linter by itself with `npm run lint`. ## Architecture -- cgit