2016-05-09 15:56:44 -03:00
|
|
|
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_;
|
|
|
|
|
}));
|
|
|
|
|
|
2016-05-20 11:50:55 -03:00
|
|
|
it('should be defined', function() {
|
|
|
|
|
should.exist(walletService);
|
2016-05-09 15:56:44 -03:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|