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

17 lines
339 B
JavaScript

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