1

我在共享 lib 目录中有一个文件:lib/functional.js

它将对象 F 附加到全局范围:

F = (function() {
  return {
    method1: function() {}
  }
})();

在应用程序中这工作正常,我可以通过 F.method1() 从任何地方访问 method1,服务器和客户端。

我还对通过的客户端进行了单元测试:

describe('GameController', function () {
  beforeEach(module('blockchess'));

  // Get a new controller and rootscope before each test is executed
  var $controller = {};
  var $scope = {};
  beforeEach(inject(function (_$rootScope_, _$controller_) {
    $controller = _$controller_;
    $scope = _$rootScope_.$new();
  }));

  it('should have a gameId', function () {
    $controller('GameController as ctrl', {
        $scope: $scope
    });
    expect($scope.ctrl.game.gameId).toBe('1');
  });

});

该控制器使用 F.method1,它工作正常。

但是在服务器中,当我尝试在单元测试中拨打电话时:

describe('Backfeed', function() {
  var move = {
    _id: '1'
  };

  var john = {
    reputation: 10,
    _id: '1'
  };

  var stars = 5;

  // call protoRate
  Meteor.methodMap.protoRate(john._id, move._id, stars);

  expect(john.reputation).toEqual(9.47368421052632);
})

我收到此错误:

ReferenceError: F 未定义

/home/adam/apps/blockchess/server/lib/protocol.js:9:14:ReferenceError:F 未在 Object.protoRate 中定义(/home/adam/apps/blockchess/server/lib/protocol.js:9 :14) 在/home/adam/apps/blockchess/tests/jasmine/server/unit/backfeed/backfeedSpec.js:28:22

如果有帮助:我还注意到,如果我删除包装 F 函数的 IIFE:

F = function() {
  return {
    method1: function() {}
  }
};

我可以从服务器单元测试访问 F,但通过应用程序没用。

任何想法如何解决这个问题?

4

0 回答 0