Wallet/test/controllers/menu.test.js
Matias Alejo Garcia 320de62f13 bwc
2015-04-11 10:53:15 -03:00

15 lines
438 B
JavaScript

'use strict';
describe('menuController', function(){
var scope, controller;
beforeEach(angular.mock.module('copayApp.controllers'));
beforeEach(angular.mock.inject(function($rootScope, $controller){
scope = $rootScope.$new();
controller = $controller('menuController', {$scope: scope});
}));
it('should have a menu variable', function(){
expect(controller.menu).not.toBeUndefined();
});
});