Files
stf-DeviceFarmer-1/res/app/control-panes/dashboard/install/install-spec.js
2014-09-04 17:17:54 +09:00

18 lines
346 B
JavaScript

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