diff --git a/test/parallel/test-performance-measure.js b/test/parallel/test-performance-measure.js index 949258f96e1b2d..0d2d91ae6bd645 100644 --- a/test/parallel/test-performance-measure.js +++ b/test/parallel/test-performance-measure.js @@ -10,7 +10,9 @@ const ALLOWED_MARGIN = 10; const expected = ['Start to Now', 'A to Now', 'A to B']; const obs = new PerformanceObserver(common.mustCall((items) => { items.getEntries().forEach(({ name, duration }) => { - assert.ok(duration > (DELAY - ALLOWED_MARGIN)); + // TODO(mrjithil) remove after 55431 fixed + const msg = `${DELAY} | ${ALLOWED_MARGIN} | ${duration}`; + assert.ok(duration > (DELAY - ALLOWED_MARGIN), msg); assert.strictEqual(expected.shift(), name); }); }));