我正在使用Meteor 1.2.1
和sanjo:jasmine@0.20.2
。我希望这个测试(在客户端运行)失败,但看起来它从未执行过。
describe('compressListOfIntegers', function () {
it('should return any string', function (done) {
Meteor.call('compressListOfIntegers', [1,2,3,4,5,6,7,8,9], function(err, data) {
expect(data).toEqual(jasmine.any(Number));
done();
});
});
});
如何测试Meteor.call?作为一个额外的好处:我应该从客户端测试我的Meteor方法吗?有哪些替代方案?