()
| 222 | } |
| 223 | |
| 224 | export function createHistogramStepData(): HistogramStepDatum[] { |
| 225 | return [ |
| 226 | buildHistogramStepData({ |
| 227 | step: 0, |
| 228 | wallTime: 123, |
| 229 | bins: [{min: 0, max: 100, count: 42}], |
| 230 | }), |
| 231 | buildHistogramStepData({ |
| 232 | step: 1, |
| 233 | wallTime: 124, |
| 234 | bins: [{min: 0, max: 100, count: 42}], |
| 235 | }), |
| 236 | buildHistogramStepData({ |
| 237 | step: 99, |
| 238 | wallTime: 125, |
| 239 | bins: [{min: 0, max: 100, count: 42}], |
| 240 | }), |
| 241 | ]; |
| 242 | } |
| 243 | |
| 244 | export function createImageStepData(): ImageStepDatum[] { |
| 245 | return [ |
no test coverage detected
searching dependent graphs…