diff --git a/test/controllers/menu.test.js b/test/controllers/menu.test.js deleted file mode 100644 index d2f6ec203..000000000 --- a/test/controllers/menu.test.js +++ /dev/null @@ -1,17 +0,0 @@ -'use strict'; - -describe('menuController', function(){ - var state, scope, controller; - - beforeEach(angular.mock.module('copayApp.controllers')); - beforeEach(angular.mock.module('stateMock')); - beforeEach(angular.mock.inject(function($rootScope, $controller, $state){ - state = $state; - scope = $rootScope.$new(); - controller = $controller('menuController', {$scope: scope}); - })); - - it('should have a menu variable', function(){ - expect(controller.menu).not.toBeUndefined(); - }); -}); diff --git a/test/controllers/sidebar.test.js b/test/controllers/sidebar.test.js new file mode 100644 index 000000000..ffa7d7137 --- /dev/null +++ b/test/controllers/sidebar.test.js @@ -0,0 +1,11 @@ +'use strict'; + +describe('sidebarController', function(){ + var scope, controller; + + beforeEach(angular.mock.module('copayApp.controllers')); + + it('wallet selection', function(){ + expect(true).not.toBeUndefined(); + }); +});