copay/test/walletService.test.js

24 lines
424 B
JavaScript
Raw Normal View History

describe('walletService', function() {
var walletService;
// Adds walletService's module dependencies
beforeEach(function() {
module('ngLodash');
module('gettext');
module('bwcModule');
module('copayApp.services');
});
beforeEach(inject(function(_walletService_) {
walletService = _walletService_;
}));
it('should be defined', function() {
should.exist(walletService);
});
});