copay/test/controllers/sidebar.test.js

12 lines
229 B
JavaScript
Raw Normal View History

2015-04-22 00:03:05 -07:00
'use strict';
describe('sidebarController', function(){
var scope, controller;
beforeEach(angular.mock.module('copayApp.controllers'));
it('wallet selection', function(){
expect(true).not.toBeUndefined();
});
});