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

17 lines
333 B
JavaScript

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