AppEngine Python 项目中的 AngularJS / Karma 单元测试



我正在GAE/Python之上试验AngularJS。我尝试移动一些引导模板文件,但在我的单元测试(默认单元测试)中没有收到以下错误。

源:https://github.com/m2mIO/angular-portal

Starting Karma Server (http://karma-runner.github.io)
-------------------------------------------------------------------
WARN [config]: "/" is proxied, you should probably change urlRoot to avoid conflicts
WARN [plugin]: Cannot find plugin "karma-junit-reporter".
  Did you forget to install it ?
  npm install karma-junit-reporter --save-dev
WARN [proxy]: proxy "http://localhost:8080" normalized to "http://localhost:8080/"
INFO [karma]: Karma v0.10.2 server started at http://localhost:9876/
INFO [launcher]: Starting browser Chrome
INFO [Chrome 30.0.1599 (Mac OS X 10.8.5)]: Connected on socket 4fu9UWsj1npbCkHr1G-4
Chrome 30.0.1599 (Mac OS X 10.8.5) ERROR
    Uncaught ReferenceError: jQuery is not defined
    at /Users/kyleroche/PycharmProjects/2lemetry/app/js/fullcalendar.min.js:7
Chrome 30.0.1599 (Mac OS X 10.8.5) ERROR
    Uncaught ReferenceError: jQuery is not defined
    at /Users/kyleroche/PycharmProjects/2lemetry/app/js/gcal.js:107
Chrome 30.0.1599 (Mac OS X 10.8.5) ERROR
    Uncaught ReferenceError: jQuery is not defined
    at /Users/kyleroche/PycharmProjects/2lemetry/app/js/jquery-ui-1.10.2.custom.min.js:6
Chrome 30.0.1599 (Mac OS X 10.8.5) ERROR
    Uncaught ReferenceError: jQuery is not defined
    at /Users/kyleroche/PycharmProjects/2lemetry/app/js/jquery.dataTables.js:39
Chrome 30.0.1599 (Mac OS X 10.8.5) ERROR
    Uncaught ReferenceError: jQuery is not defined
    at /Users/kyleroche/PycharmProjects/2lemetry/app/js/jquery.flot.js:32
Chrome 30.0.1599 (Mac OS X 10.8.5): Executed 0 of 0 ERROR (0.716 secs / 0 secs)

我也不确定要向我的 app.yaml 添加什么来为 e2e 测试提供服务。他们位于 test/e2e/runner.html。

我想

通了。用于模板文件的排除,并且必须从静态资产目录进行服务器/测试。

最新更新