@mui/internal-benchmark 0.0.3-canary.12 → 0.0.3-canary.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +3 -5
- package/package.json +2 -2
package/index.mjs
CHANGED
|
@@ -206,17 +206,15 @@ export function benchmark(name, renderFn, interactionOrOptions, maybeOptions) {
|
|
|
206
206
|
|
|
207
207
|
// Paint timings are recorded as one harness-owned `bench:paint` metric: the default sentinel
|
|
208
208
|
// is the base series (`bench:paint`) and named `elementtiming` markers are sub-series
|
|
209
|
-
// (`bench:paint#grid-header`, …), all sharing a single definition.
|
|
210
|
-
//
|
|
209
|
+
// (`bench:paint#grid-header`, …), all sharing a single definition. Paint is informational (no
|
|
210
|
+
// alarm): it dominates each test's total duration, so a per-test paint alarm just duplicates the
|
|
211
|
+
// Duration regression signal and floods the report on any broadly-regressed run.
|
|
211
212
|
const paint = new ScalarMetric({
|
|
212
213
|
name: 'bench:paint',
|
|
213
214
|
format: {
|
|
214
215
|
style: 'unit',
|
|
215
216
|
unit: 'millisecond',
|
|
216
217
|
maximumFractionDigits: 2
|
|
217
|
-
},
|
|
218
|
-
alarm: {
|
|
219
|
-
error: 0.2
|
|
220
218
|
}
|
|
221
219
|
});
|
|
222
220
|
if (typeof window.gc !== 'function') {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/internal-benchmark",
|
|
3
|
-
"version": "0.0.3-canary.
|
|
3
|
+
"version": "0.0.3-canary.13",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "Benchmark utilities for MUI projects. Internal package.",
|
|
6
6
|
"repository": {
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"gitSha": "
|
|
71
|
+
"gitSha": "72707878b12babfd036c329bf18156894d9a4bc9"
|
|
72
72
|
}
|