标签: javascript angularjs jasmine frontend
我使用Jasmine框架测试角度服务,该服务使用$http
$http
我的测试是:
it('exists',inject(function(){ }); expect(ctrl).toBeDefined(); expect(ctrl).not.toBeNull(); expect(typeof ctrl).toBe('object'); }));
我可以对此服务执行其他测试,例如: