File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed
Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -271,11 +271,6 @@ Platform check for Windows 32-bit on Windows 64-bit.
271271
272272Checks whether any globals are not on the ` knownGlobals ` list.
273273
274- ### libDir
275- * return [ < ; String>] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type )
276-
277- Path to the 'lib' directory.
278-
279274### localhostIPv4
280275* return [ < ; String>] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type )
281276
Original file line number Diff line number Diff line change 11/* eslint-disable required-modules */
22'use strict' ;
3- var path = require ( 'path' ) ;
4- var fs = require ( 'fs' ) ;
5- var assert = require ( 'assert' ) ;
6- var os = require ( 'os' ) ;
7- var child_process = require ( 'child_process' ) ;
3+ const path = require ( 'path' ) ;
4+ const fs = require ( 'fs' ) ;
5+ const assert = require ( 'assert' ) ;
6+ const os = require ( 'os' ) ;
7+ const child_process = require ( 'child_process' ) ;
88const stream = require ( 'stream' ) ;
99const util = require ( 'util' ) ;
1010const Timer = process . binding ( 'timer_wrap' ) . Timer ;
@@ -14,7 +14,6 @@ const testRoot = process.env.NODE_TEST_DIR ?
1414
1515exports . testDir = __dirname ;
1616exports . fixturesDir = path . join ( exports . testDir , 'fixtures' ) ;
17- exports . libDir = path . join ( exports . testDir , '../lib' ) ;
1817exports . tmpDirName = 'tmp' ;
1918// PORT should match the definition in test/testpy/__init__.py.
2019exports . PORT = + process . env . NODE_COMMON_PORT || 12346 ;
You can’t perform that action at this time.
0 commit comments