TypeError:模块不是AngularJS&茉莉花和量角器

时间:2015-09-29 23:12:16

标签: angularjs gulp protractor

我的app.js

中有以下内容
require('angular');
var http = require('http');
var fillDropDownsController = require('./js/controllers');
var getDropDownsService = require('./js/services');
angular.module('app', ['fillDropDownsController', 'getDropDownsService']);

我的ng-app在html标签上。我正在使用gulp-protractor编写单元测试。

在我的测试文件中,我提到了以下内容:

beforeEach(function(){
    module('app'); });

但是当我运行gulp命令时,这会继续发出错误:

Message:
    Failed: module is not a function
  Stack:
    TypeError: module is not a function

知道这里有什么问题吗?

谢谢!

0 个答案:

没有答案