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