Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wardpeet committed Oct 26, 2020
1 parent b83935f commit 3d463cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/node.js
Expand Up @@ -13,7 +13,7 @@ async function inspectMacro(t, input) {
reject: false
});

const {stdout, stderr} = await subprocess
const {stdout, stderr} = await subprocess;

t.is(stdout, 'foo');
t.is(stderr, '');
Expand Down Expand Up @@ -57,7 +57,7 @@ test('node pass on nodeOptions', async t => {
test.serial(
'node removes --inspect from nodeOptions when defined by parent process',
inspectMacro,
`--inspect`
'--inspect'
);

test.serial(
Expand Down

0 comments on commit 3d463cb

Please sign in to comment.