Wallet/test/controllers/walletHome.test.js
Matias Alejo Garcia b17517ede0
fix tests
2016-06-06 19:15:18 -03:00

19 lines
312 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);
});
});