test: run ESM tests in parallel

PR-URL: https://github.com/nodejs/node/pull/21919
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
Michaël Zasso 2018-07-21 11:13:07 +02:00
parent 8d1055719a
commit 34fb560c92
No known key found for this signature in database
GPG key ID: 770F7A9A5AE15600
2 changed files with 1 additions and 3 deletions

View file

@ -3,7 +3,6 @@
import common from './index.js';
const {
PORT,
isMainThread,
isWindows,
isWOW64,
@ -63,7 +62,6 @@ const {
} = common;
export {
PORT,
isMainThread,
isWindows,
isWOW64,

View file

@ -3,4 +3,4 @@ sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
import testpy
def GetConfiguration(context, root):
return testpy.SimpleTestConfiguration(context, root, 'es-module')
return testpy.ParallelTestConfiguration(context, root, 'es-module')