Files
stf/res/app/control-panes/dashboard/upload/activities/activities-spec.js
2014-04-04 17:34:30 +09:00

17 lines
336 B
JavaScript

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