Skip to content

Commit 994ed4e

Browse files
committed
linting fixes
1 parent 053cf5d commit 994ed4e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/es-module/test-esm-symlink-main.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use strict';
22

3+
const common = require('../common');
34
const assert = require('assert');
45
const path = require('path');
56
const { spawn } = require('child_process');
@@ -17,7 +18,8 @@ try {
1718
common.skip('insufficient privileges for symlinks');
1819
}
1920

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

0 commit comments

Comments
 (0)