From 9dd32d73a2a16cb6d7775805ccc9fe6766649ba7 Mon Sep 17 00:00:00 2001 From: JoelCodes Date: Fri, 28 Sep 2018 18:43:28 -0700 Subject: [PATCH] Typos --- README.md | 2 +- package.json | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 2eba5c3..bbb9eb9 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Set of exercises in using JS promises for handling asynchronous operations. For these exercises, there are a few folders, each corresponding to a step in the lesson. Each of them has a `README.md`, a `test.js`, and an `answers.js`. Read the README.md for further instructions, implement the methods in the `answers.js`, passing the tests in the `tests.js` file. The answers has a -> Quick tip: To run any of the exercises below in watch mode, add `-- --watch`, (e.g. `npm run making-promises -- --watch`) +> Quick tip: To run any of the exercises below in watch mode, add `-- --watch`, (e.g. `npm run 01-making-promises -- --watch`) You are free to look at any of the tests for guidance, but don't change them. diff --git a/package.json b/package.json index 86e822d..f8deb95 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,6 @@ "description": "Exercises for learning promises", "main": "index.js", "scripts": { - "test": "./node_modules/.bin/mocha", - "start": "./node_modules/.bin/mocha --watch", "01-making-promises": "npm test -- ./01-making-promises", "02-consuming-promises": "npm test -- ./02-consuming-promises", "03-transforming-promises": "npm test -- ./03-transforming-promises",