Files
stf/res/app/control-panes/dashboard/upload/upload-spec.js
2014-03-31 14:34:33 +09:00

17 lines
324 B
JavaScript

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