Style File Explorer along with coding standard.

This commit is contained in:
Gunther Brunner
2015-10-01 17:11:14 +09:00
parent 82c20c28d1
commit 2b7a9403aa
3 changed files with 57 additions and 58 deletions

View File

@@ -1,17 +1,17 @@
describe('FsCtrl', function () {
beforeEach(angular.mock.module(require('./').name));
beforeEach(angular.mock.module(require('./').name))
var scope, ctrl;
var scope, ctrl
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('ExplorerCtrl', {$scope: scope});
}));
scope = $rootScope.$new()
ctrl = $controller('ExplorerCtrl', {$scope: scope})
}))
it('should ...', inject(function () {
expect(1).toEqual(1);
expect(1).toEqual(1)
}));
}))
});
})