Wallet/test/unit/services/servicesSpec.js
2014-06-03 10:10:03 -03:00

27 lines
672 B
JavaScript

//
// test/unit/services/servicesSpec.js
//
describe("Unit: Testing Services", function() {
beforeEach(angular.mock.module('copay.socket'));
it('should contain a Socket service', inject(function(Socket) {
expect(Socket).not.to.equal(null);
}));
beforeEach(angular.mock.module('copay.walletFactory'));
it('should contain a walletFactory service', inject(function(walletFactory) {
expect(walletFactory).not.to.equal(null);
}));
// TODO
/*beforeEach(angular.mock.module('copay.controllerUtils'));
it('should contain a controllerUtils service', inject(function(controllerUtils) {
expect(controllerUtils).not.to.equal(null);
}));
*/
});