blob: e9f0239b7ea8cc181cf81f1844960765153a30e1 [file] [log] [blame]
describe('KeysCtrl', function() {
beforeEach(angular.mock.module(require('./index').name))
var scope, ctrl
beforeEach(inject(function($rootScope, $controller) {
scope = $rootScope.$new()
ctrl = $controller('KeysCtrl', {$scope: scope})
}))
it('should ...', inject(function() {
expect(1).toEqual(1)
}))
})