blob: 7f39708f6aafb34a6f0c34dfbfe778cf8707a84b [file] [log] [blame]
describe('ScreenshotsCtrl', function() {
beforeEach(angular.mock.module(require('./').name))
var scope, ctrl
beforeEach(inject(function($rootScope, $controller) {
scope = $rootScope.$new()
ctrl = $controller('ScreenshotsCtrl', {$scope: scope})
}))
it('should ...', inject(function() {
expect(1).toEqual(1)
}))
})