在使用jasmine访问angularJS应用程序时出现以下错误:“无法找到变量:angular”

时间:2015-06-24 06:15:53

标签: angularjs karma-jasmine

PhantomJS 1.9.8(Linux 0.0.0)错误 ReferenceError:无法找到变量:angular

1 个答案:

答案 0 :(得分:1)

在你的karma.conf.js中,你需要包含javascript文件的路径。看起来角度文件不在路径中:

// list of files / patterns to load in the browser
files: [
  'app/scripts/vendor/angular.js'
]