Files
stf-DeviceFarmer/res/app/control-panes/automation/device-settings/device-settings-spec.js
2014-07-25 20:21:09 +09:00

17 lines
349 B
JavaScript

describe('DeviceSettingsCtrl', function () {
beforeEach(module('stf.device-settings'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('DeviceSettingsCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});