We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2242cbb commit 7454affCopy full SHA for 7454aff
test/pummel/test-vm-memleak.js
@@ -36,7 +36,7 @@ const interval = setInterval(function() {
36
37
const rss = process.memoryUsage.rss();
38
assert.ok(rss < 64 * 1024 * 1024,
39
- `memory usage: ${Math.round(rss / (1024 * 1024))}Mb`);
+ `memory usage: ${rss} (${Math.round(rss / (1024 * 1024))} MB)`);
40
41
// Stop after 5 seconds.
42
if (Date.now() - start > 5 * 1000) {
0 commit comments