summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2018-07-21 11:13:07 +0200
committerMichaël Zasso <targos@protonmail.com>2018-08-04 18:14:13 +0200
commit34fb560c924f365b2d09b70376768634c527e3ae (patch)
treef54276d76ab8da919dd550e30f6952b3ae54d54d /test
parent8d1055719adda560d285a90d45ddf121161fd157 (diff)
downloadandroid-node-v8-34fb560c924f365b2d09b70376768634c527e3ae.tar.gz
android-node-v8-34fb560c924f365b2d09b70376768634c527e3ae.tar.bz2
android-node-v8-34fb560c924f365b2d09b70376768634c527e3ae.zip
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>
Diffstat (limited to 'test')
-rw-r--r--test/common/index.mjs2
-rw-r--r--test/es-module/testcfg.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/test/common/index.mjs b/test/common/index.mjs
index 8bf512f6b9..51cf2a31df 100644
--- a/test/common/index.mjs
+++ b/test/common/index.mjs
@@ -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,
diff --git a/test/es-module/testcfg.py b/test/es-module/testcfg.py
index 0d8dfeed46..83ce46ee66 100644
--- a/test/es-module/testcfg.py
+++ b/test/es-module/testcfg.py
@@ -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')