Files
stf-DeviceFarmer/res/app/control-panes/advanced/advanced-spec.js
2014-03-28 21:32:41 +09:00

17 lines
330 B
JavaScript

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