diff --git a/resources/frontend_client/test/unit/controllers.spec.js b/resources/frontend_client/test/unit/controllers.spec.js deleted file mode 100644 index 191afca0c0911b1b6e97de532b62bd5c28777884..0000000000000000000000000000000000000000 --- a/resources/frontend_client/test/unit/controllers.spec.js +++ /dev/null @@ -1,23 +0,0 @@ -'use strict'; - -import 'metabase/controllers'; - -describe('metabase.controllers', function() { - beforeEach(angular.mock.module('metabase.controllers')); - - describe('Homepage', function() { - beforeEach(angular.mock.inject(function($location) { - spyOn($location, 'path').and.returnValue('Fake location'); - })) - - it('should redirect logged-out user to /auth/login', inject(function($controller, $location) { - $controller('Homepage', { $scope: {}, AppState: { model: { currentUser: null }} }); - expect($location.path).toHaveBeenCalledWith('/auth/login'); - })); - - it('should redirect logged-in user to /dash/', inject(function($controller, $location) { - $controller('Homepage', { $scope: {}, AppState: { model: { currentUser: {} }} }); - expect($location.path).toHaveBeenCalledWith('/dash/'); - })); - }); -});