From 994ed4e99ccfbaf9a671544f71073c9426e494ca Mon Sep 17 00:00:00 2001 From: guybedford Date: Tue, 20 Mar 2018 19:01:12 +0200 Subject: [PATCH] linting fixes --- test/es-module/test-esm-symlink-main.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/es-module/test-esm-symlink-main.js b/test/es-module/test-esm-symlink-main.js index 33acb4ca863d63..f7631ef2e5bdca 100644 --- a/test/es-module/test-esm-symlink-main.js +++ b/test/es-module/test-esm-symlink-main.js @@ -1,5 +1,6 @@ 'use strict'; +const common = require('../common'); const assert = require('assert'); const path = require('path'); const { spawn } = require('child_process'); @@ -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); });