diff --git a/test/parallel/test-performance-function-async.js b/test/parallel/test-performance-function-async.js index 957ff62c38415d..82ff6612c5bf86 100644 --- a/test/parallel/test-performance-function-async.js +++ b/test/parallel/test-performance-function-async.js @@ -26,7 +26,6 @@ async function doIt() { const obs = new PerformanceObserver(common.mustCall((list) => { const entry = list.getEntries()[0]; assert.strictEqual(entry.name, 'doIt'); - assert(entry.duration > 100); assert(check); obs.disconnect(); }));