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 19bfb2a commit 0b46854Copy full SHA for 0b46854
test/memory-leak.js
@@ -27,7 +27,6 @@ function next() {
27
console.dir(sampleA)
28
console.log('Memory usage at end:');
29
console.dir(sampleB)
30
- assert(sampleA.rss * 1.2 > sampleB.rss, 'RSS should not grow by more than 20%')
31
assert(sampleA.heapTotal * 1.2 > sampleB.heapTotal, 'heapTotal should not grow by more than 20%')
32
assert(sampleA.heapUsed * 1.2 > sampleB.heapUsed, 'heapUsed should not grow by more than 20%')
33
}
0 commit comments