copay/test/unit/services/servicesSpec.js

27 lines
658 B
JavaScript
Raw Normal View History

2014-04-23 09:21:33 -07:00
//
// test/unit/services/servicesSpec.js
//
describe("Unit: Testing Services", function() {
2014-04-23 14:07:20 -07:00
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);
}));
beforeEach(angular.mock.module('copay.controllerUtils'));
it('should contain a controllerUtils service', inject(function(controllerUtils) {
expect(controllerUtils).not.to.equal(null);
}));
2014-04-23 09:21:33 -07:00
});