我正在尝试配置Karma使用jasmine-jquery但没有成功......
在我的 karma.conf.js 文件中,我配置了框架:
frameworks: ['jasmine'],
并加载了所需的依赖项:
files: [
'../bower_components/jquery/dist/jquery.js',
'../bower_components/jasmine-jquery/lib/jasmine-jquery.js',
...
但是当我使用 grunt test 运行我的测试时,我有以下内容:
TypeError: undefined is not a function
at null.<anonymous> (/home/sofarell/workspace/myapp/bower_components/jasmine-jquery/lib/jasmine-jquery.js:352:13)
查看 jasmine-jquery.js 的源代码,看起来好像没有找到jasmine引用,因为jasmine-jquery是在jasmine之前加载的:
351. beforeEach(function () {
352. jasmine.addMatchers({
353. toHaveClass: function () {
其他人是否遇到过这个问题? 有没有办法解决这个问题?
答案 0 :(得分:5)
我自己完成了这个,结果我的业力 - 茉莉花版本太旧了(~0.1.5
)。将它归结为packages.json中的~0.2.0
,执行了npm install
,安装了0.2.2
,并且有效。这个github issue from the jasmine-jquery repo是关键。