Skip to content

Commit

Permalink
fixup: delint
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobJingleheimer committed Mar 12, 2022
1 parent bc5f0a4 commit 39bf611
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 39bf611

Please sign in to comment.