Skip to content

Commit 291669e

Browse files
Trottjasnell
authored andcommitted
build: streamline JS test suites in Makefile
* alphabetize the JS test suites * Use CI_JS_SUITES variable instead of listing all tests PR-URL: #13340 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent a872399 commit 291669e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ test: all
197197
$(MAKE) build-addons-napi
198198
$(MAKE) cctest
199199
$(PYTHON) tools/test.py --mode=release -J \
200-
doctool inspector known_issues message pseudo-tty parallel sequential \
201-
async-hooks $(CI_NATIVE_SUITES)
200+
$(CI_JS_SUITES) \
201+
$(CI_NATIVE_SUITES)
202202
$(MAKE) lint
203203

204204
test-parallel: all
@@ -328,7 +328,7 @@ test-all-valgrind: test-build
328328
$(PYTHON) tools/test.py --mode=debug,release --valgrind
329329

330330
CI_NATIVE_SUITES := addons addons-napi
331-
CI_JS_SUITES := doctool inspector known_issues message parallel pseudo-tty sequential async-hooks
331+
CI_JS_SUITES := async-hooks doctool inspector known_issues message parallel pseudo-tty sequential
332332

333333
# Build and test addons without building anything else
334334
test-ci-native: LOGLEVEL := info

0 commit comments

Comments
 (0)