Wallet/test/controllers/sidebar.test.js
Gustavo Maximiliano Cortez dd31f0c551 Fix test. Dummy test
2015-04-22 15:54:44 -03:00

11 lines
229 B
JavaScript

'use strict';
describe('sidebarController', function(){
var scope, controller;
beforeEach(angular.mock.module('copayApp.controllers'));
it('wallet selection', function(){
expect(true).not.toBeUndefined();
});
});