Skip to Content
Vue.js 2 Cookbook
book

Vue.js 2 Cookbook

by Andrea Passaglia
April 2017
Intermediate to advanced
454 pages
12h 51m
English
Packt Publishing
Content preview from Vue.js 2 Cookbook

There's more...

Calling Karma from inside the node_modules directory every time can be annoying. There are two ways to make this more pleasant: we can install Karma globally or we can add Karma to our npm scripts; we'll do both.

First, let's add Karma to our npm scripts. Go inside the package.json file and add the following block:

..."version": "1.0.0",  "scripts": {    "test": "./node_modules/karma/bin/karma start"  },"devDependencies": {...

Now, you can type npm run test and Karma will automatically launch. The next thing we can do is install Karma globally with the following line:

npm install -g karma

Now we can write commands such as karma init and karma start, and they will be recognized. We can also edit our package.json, like this: ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Vue.js 2

Learning Vue.js 2

Olga Filipova
Pro Vue.js 2

Pro Vue.js 2

Adam Freeman

Publisher Resources

ISBN: 9781786468093Supplemental Content