(stringMap: {[key: string]: any})
| 90 | |
| 91 | describe('perflog metric', () => { |
| 92 | function sortedKeys(stringMap: {[key: string]: any}) { |
| 93 | const res: string[] = []; |
| 94 | res.push(...Object.keys(stringMap)); |
| 95 | res.sort(); |
| 96 | return res; |
| 97 | } |
| 98 | |
| 99 | it('should describe itself based on the perfLogFeatrues', () => { |
| 100 | expect(sortedKeys(createMetric([[]], new PerfLogFeatures()).describe())).toEqual([ |
no test coverage detected
searching dependent graphs…