()
| 9 | const histogram = require('perf_hooks').createHistogram(); |
| 10 | |
| 11 | function testFastMethods() { |
| 12 | histogram.record(1); |
| 13 | histogram.recordDelta(); |
| 14 | histogram.percentile(50); |
| 15 | histogram.reset(); |
| 16 | } |
| 17 | |
| 18 | eval('%PrepareFunctionForOptimization(histogram.record)'); |
| 19 | eval('%PrepareFunctionForOptimization(histogram.recordDelta)'); |
no test coverage detected
searching dependent graphs…