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.
test-repl-paste-big-data
1 parent 398ba68 commit 92649e2Copy full SHA for 92649e2
1 file changed
test/parallel/test-repl-paste-big-data.js test/pummel/test-repl-paste-big-data.jstest/parallel/test-repl-paste-big-data.js renamed to test/pummel/test-repl-paste-big-data.js
@@ -14,10 +14,10 @@ replServer.input.emit('keypress', '', { name: 'left' });
14
replServer.input.emit('data', 'node');
15
assert.strictEqual(replServer.line, '{node}');
16
17
-replServer.input.emit('data', 'a'.repeat(2e4) + '\n');
+replServer.input.emit('data', 'a'.repeat(4e4) + '\n');
18
replServer.input.emit('data', '.exit\n');
19
20
replServer.once('exit', common.mustCall(() => {
21
const diff = process.cpuUsage(cpuUsage);
22
- assert.ok(diff.user < 1e6);
+ assert.ok(diff.user < 4e6);
23
}));
0 commit comments