/** * @ngdoc personBudgivningarService * @name fasit.services.#personBudgivningarService * @personBudgivningarService * * @description * Service som hanterar personbudgivningar - en lista på alla budgivningar från personen * */ angular.module('fbMocks') .factory('performanceMonitorService', [function ( ): fb.IPerformanceMonitorService { var noop = function (): void { } return { start: noop, stop: noop, fetch: function () { return null; }, status: function (): string { return 'STOPPED'}, reset: noop, }; }]); //angular.mock.module('fasit') // .factory('performanceMonitorService', [function ( // ): fb.IPerformanceMonitorService { // var noop = function (): void { // } // return { // start: noop, // stop: noop, // fetch: function () { // return null; // }, // status: function (): string { return 'STOPPED' }, // reset: noop, // }; // }]);