(entries)
| 979 | } |
| 980 | |
| 981 | function createCriterionCollectorChart(entries) { |
| 982 | createCriterionQueryFilteredChart(entries, { |
| 983 | groupPrefix: "collector", |
| 984 | chartId: "criterion-collector-chart", |
| 985 | selectId: "collector-query-select", |
| 986 | title: "Linting Collection Performance", |
| 987 | yAxisTitle: "Milliseconds", |
| 988 | conversionFactor: 1000000, |
| 989 | decimalPlaces: 2, |
| 990 | }); |
| 991 | } |
| 992 | |
| 993 | function detectOutliers(values, threshold = 3) { |
| 994 | if (values.length < 3) return { outliers: [], normal: values }; |
no test coverage detected