0
我試圖建立噶一個新的項目,我收到以下錯誤'警告:試圖不止一次加載角。'噶警告
'WARNING: Tried to load angular more than once.'
我karma.conf.js看起來像這樣
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],
// list of files/patterns to load in the browser
files: [
'app/bower_components/angular/angular.js',
'app/bower_components/angular-mocks/angular-mocks.js',
'dist/js/combined.bower.js',
'app/js/routes.js',
'app/test/ENV.js',
'app/js/**/*.js',
'app/test/**/*.js'
],
// list of files to exclude
exclude: [
'app/js/filter.list.js'
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'app/js/**/*.js': ['env']
},
envPreprocessor: [
'ENV'
],
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],
// web server port
port: 9876,
// enable/disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable/disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['PhantomJS'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity
})
}
爲了,我加載了Angular,angular-mock,我的dist文件夾中的聯合bower資源,我的路線,我的角度模塊定義(不是我的想法),我需要的環境變量,我想測試的javascript控制器,我的測試文件夾。如果我不包含我的組合的bower文件,那麼會出現一個關於無法加載jquery的錯誤,以及另一個針對其他每個依賴項的錯誤。
我能做些什麼來解決這個問題?