* 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
20 lines
313 B
JavaScript
20 lines
313 B
JavaScript
describe('walletHome', function() {
|
|
|
|
var walletService;
|
|
var fixtures = {};
|
|
|
|
|
|
beforeEach(function(done){
|
|
mocks.init(fixtures, 'walletHomeController', {}, done);
|
|
})
|
|
|
|
afterEach(function(done){
|
|
mocks.clear({}, done);
|
|
});
|
|
|
|
|
|
it('should be defined', function() {
|
|
should.exist(ctrl);
|
|
});
|
|
|
|
});
|