I'm using angular 1.2.2, and angular mock 1.3.5. It's pretty simple testing code to test my own customized service.
angular.module('factories', [])
.factory('chimp', ['$log', function($log) {
return {
ook: function() {
$log.warn('Ook.');
}
};
}]);
describe('factories', function() {
var chimp;
var $log;
beforeEach(function() {
module('factories')
inject(function(_chimp_, _$log_) {
chimp = _chimp_;
$log = _$log_;
})
});
beforeEach();
describe('when invoked', function() {
beforeEach(function() {
chimp.ook();
});
it('should say Ook', function() {
expect("1").to.equal('Ook.');
});
});
});
However, it ways gives me Error: [$injector:modulerr] Why is this happening? angular version does not work with the mock version?
After I changed it to 1.2.2 mocks, it worked.