October 2017
Intermediate to advanced
458 pages
11h 13m
English
Karma alone does not do all that much. You need plugins to get anything done. In fact, if you check your dev dependencies, you will see Karma already has some plugins installed:
"devDependencies": {
"angular-mocks": "^1.6.1",
"jasmine": "^2.5.3",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0"
}
The Chrome launcher and Jasmine plugin come with Karma by default. At least the Chrome launcher makes sense, as Karma was developed for Angular.js, which was developed by Google, who also made Chrome. Google owns you now. In the next part, we are going to install and use some plugins.
Read now
Unlock full access