From 59be66f3a8d469455bd70fa6818279745c4943a7 Mon Sep 17 00:00:00 2001 From: BrainBoxBrown Date: Wed, 24 Apr 2019 15:57:49 +1000 Subject: [PATCH] Changed unicode hyphen to normal hyphen (#1927) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When copy and pasting `npm install jest-cli —save-dev` you get this error `Invalid tag name "—save-dev": Tags may not have any characters that encodeURIComponent encodes` I replaced the unicode characters '—' with ascii hypens '-' --- content/blog/2014-09-24-testing-flux-applications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2014-09-24-testing-flux-applications.md b/content/blog/2014-09-24-testing-flux-applications.md index 0986c765..5721e3b4 100644 --- a/content/blog/2014-09-24-testing-flux-applications.md +++ b/content/blog/2014-09-24-testing-flux-applications.md @@ -17,7 +17,7 @@ The first steps toward working with Jest are as follows: 1. Get the module dependencies for the application installed by running `npm install`. 2. Create a directory `__tests__/` with a test file, in this case TodoStore-test.js -3. Run `npm install jest-cli —save-dev` +3. Run `npm install jest-cli --save-dev` 4. Add the following to your package.json ```javascript