* add walletHome test template * add create test * add fixtures * do not mock parseSecret * better hash * use fixtures for create controller test * add import test * stubs reset * add more controller tests * Remove $state dependency * refactore fixtures + profiles * add backup.js test * update bwc * rm log
23 lines
424 B
JavaScript
23 lines
424 B
JavaScript
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);
|
|
});
|
|
|
|
});
|