Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup: delint
  • Loading branch information
JakobJingleheimer authored and GeoffreyBooth committed Mar 28, 2022
commit 463ae28954ed66b010953ad6cd6496e68fe9c170
4 changes: 2 additions & 2 deletions test/es-module/test-esm-experimental-warnings.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ for (
arg,
'--input-type=module',
'--eval',
`const foo = 'a'`,
'const foo = "a"',
]);

let stderr = '';
child.stderr.setEncoding('utf8');
child.stderr.on('data', (data) => { stderr += data });
child.stderr.on('data', (data) => { stderr += data; });
child.on('close', mustCall((code, signal) => {
strictEqual(code, 0);
strictEqual(signal, null);
Expand Down