Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Mar 31, 2018
1 parent 053cf5d commit 994ed4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/es-module/test-esm-symlink-main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use strict';

const common = require('../common');
const assert = require('assert');
const path = require('path');
const { spawn } = require('child_process');
Expand All @@ -17,7 +18,8 @@ try {
common.skip('insufficient privileges for symlinks');
}

spawn(process.execPath, ['--experimental-modules', '--preserve-symlinks', symlinkPath],
spawn(process.execPath,
['--experimental-modules', '--preserve-symlinks', symlinkPath],
{ stdio: 'inherit' }).on('exit', (code) => {
assert.strictEqual(code, 0);
});

0 comments on commit 994ed4e

Please sign in to comment.