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