Я недавно обновил приложение AngularJS1.5 для использования машинописи. Мои тесты теперь работают нормально при запуске с использованием grunt test
, и они также работают нормально при запуске через Webstorm. Но когда я пытаюсь отладить любой из тестов, я получаю ошибку Error: $injector:nomod
. Вот конфиг кармы, который я использую
{
webpack,
// base path, that will be used to resolve files and exclude
basePath: cwd,
captureTimeout: 1200000,
// testing framework to use (jasmine/mocha/qunit/...)
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: sourceFiles,
exclude: [],
// web server port
port: 3000,
// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: config.LOG_INFO,
// coverage reporting breaks Web Storm debugging
reporters: ['progress', 'junit', 'html' /*, 'coverage-istanbul'*/],
// enable / disable watching file and executing tests whenever any file changes
autowatch: true,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
browsers: ['Chrome'],
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false,
preprocessors: {
[ scriptsEntry ]: [ 'webpack', 'sourcemap' ]
},
junitReporter: {
outputFile: '_dist/test-reports/unit-test-results/unit_tests.xml',
suite: ''
},
sourcemap: true,
mime: {
'text/x-typescript': ['ts','tsx']
},
htmlReporter: {
outputFile: '_dist/test-reports/unit-test-results/unit_tests.html'
}