We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ebb999 commit 4762978Copy full SHA for 4762978
1 file changed
test/parallel/test-performance-function.js
@@ -81,9 +81,11 @@ const {
81
const n = performance.timerify(m);
82
const o = performance.timerify(m);
83
const p = performance.timerify(n);
84
- assert.strictEqual(n, o);
85
- assert.strictEqual(n, p);
+ assert.notStrictEqual(n, o);
+ assert.notStrictEqual(n, p);
86
assert.strictEqual(n.length, m.length);
87
+ assert.strictEqual(o.length, m.length);
88
+ assert.strictEqual(p.length, m.length);
89
assert.strictEqual(n.name, 'timerified m');
90
}
91
0 commit comments