Files
stf-DeviceFarmer-1/res/app/control-panes/explorer/explorer-spec.js
2015-10-01 17:11:14 +09:00

18 lines
334 B
JavaScript

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)
}))
})