LocalStorageModule for Angular Js を使用するサービスのテストを作成しようとしています。使用するサービスにモジュールを追加して使用できますが、単純な単体テストをテストしようとすると、次のエラーが発生します。
Error: [$injector:modulerr] Failed to instantiate module testApp due to:
Error: [$injector:modulerr] Failed to instantiate module LocalStorageModule due to:
Error: [$injector:nomod] Module 'LocalStorageModule' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
http://errors.angularjs.org/1.3.8/$injector/nomod?p0=LocalStorageModule
簡単なテストの書き方をここに示します:
'use strict';
describe('Service: AService', function () {
// load the service's module
beforeEach(module('testApp'));
// instantiate service
var AService;
// ---------------------------------- BeforeEach ------------------------------
beforeEach(inject(function (_AService_) {
// inject the AService
AService = _AService_;
}));
// ------------------------------------ Tests ---------------------------------
it('Should ..... ', function () {
// expect(!!AService).toBe(true);
expect(true).toBe(true);
});
});
サービスのモジュール (The Service Work great) :
angular.module('testApp')
.factory('AService', function (localStorageService) {
return {
a_method: function(){
return = localStorageService.get('first_value');
}
});
app.js には、モジュール インジェクションがあります。
angular
.module('testApp', [
'ngResource',
'ngRoute',
'LocalStorageModule'
]) ...
カルマ.conf.js
module.exports = function(config) {
config.set({
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// base path, that will be used to resolve files and exclude
basePath: '../',
// testing framework to use (jasmine/mocha/qunit/...)
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'bower_components/angular-resource/angular-resource.js',
'bower_components/angular-route/angular-route.js',
'app/scripts/**/*.js',
'test/mock/**/*.js',
'test/spec/**/*.js'
],
// list of files / patterns to exclude
exclude: [],
// web server port
port: 8080,
browsers: [
'PhantomJS'
],
// Which plugins to enable
plugins: [
'karma-phantomjs-launcher',
'karma-jasmine'
],
singleRun: false,
colors: true,
logLevel: config.LOG_INFO,
});
};
テストシナリオで外部モジュールをロードする方法を誤解していると思います。手伝ってくれてありがとう !