I try to test the code below:
describe(\'myService test\', function () {
describe(\'when I call myService.one\', function () {
beforeEach(angular.mod
AngularJS provides two testing libraries:
angular-mocks is used for Jasmine and Karma testing. It publishes global methods module() and inject() to be used in your Jasmine spec tests. This means you must load the angular-mocks.js script (after you load the angular.js library/script)
angular-scenario is only used for e2e testing.