模块 'ngRaven' 不可用
Module 'ngRaven' not available
我正在尝试通过在我的代码中包含 ngRaven 来 运行 jasmine 单元测试。
以下是 karma.conf.js.
中的文件顺序
files: ['app/bower_components/jquery/dist/jquery.min.js',
'app/bower_components/angular/angular.min.js',
'app/bower_components/raven-js/dist/raven.js',
'app/bower_components/raven-js/plugins/angular.js'
]
设置项目时出现
错误
"Module 'ngRaven' 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."
知道我哪里做错了..
我在 github..click here
中发布了同样的问题
已通过在 bower.json
中添加以下依赖项进行修复
"name": "angular-raven", "version": "0.6.3",
karma.conf.js 文件中的 和 link 已从
更改
'app/bower_components/raven-js/plugins/angular.js'
到
app/bower_components/angular-raven/angular-raven.js
我正在尝试通过在我的代码中包含 ngRaven 来 运行 jasmine 单元测试。 以下是 karma.conf.js.
中的文件顺序files: ['app/bower_components/jquery/dist/jquery.min.js',
'app/bower_components/angular/angular.min.js',
'app/bower_components/raven-js/dist/raven.js',
'app/bower_components/raven-js/plugins/angular.js'
]
设置项目时出现
错误"Module 'ngRaven' 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."
知道我哪里做错了..
我在 github..click here
中发布了同样的问题已通过在 bower.json
中添加以下依赖项进行修复karma.conf.js 文件中的"name": "angular-raven", "version": "0.6.3",
和 link 已从
更改'app/bower_components/raven-js/plugins/angular.js'
到
app/bower_components/angular-raven/angular-raven.js