| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9c1e48d commit 7dd0ca4
4 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -336,7 +336,7 @@ test-all-valgrind: test-build | |||
| 336 | 336 | ||
| 337 | 337 | CI_NATIVE_SUITES := addons addons-napi | |
| 338 | 338 | CI_ASYNC_HOOKS := async-hooks | |
| 339 | - CI_JS_SUITES := abort doctool inspector known_issues message parallel pseudo-tty sequential | ||
| 339 | + CI_JS_SUITES := abort doctool es-module inspector known_issues message parallel pseudo-tty sequential | ||
| 340 | 340 | ||
| 341 | 341 | # Build and test addons without building anything else | |
| 342 | 342 | test-ci-native: LOGLEVEL := info | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -12,10 +12,11 @@ On how to run tests in this directory, see | |||
| 12 | 12 | ||
| 13 | 13 | |Directory |Runs on CI |Purpose | | |
| 14 | 14 | |-------------------|---------------|---------------| | |
| 15 | - |abort |No |Tests for when the ``` --abort-on-uncaught-exception ``` flag is used.| | ||
| 15 | + |abort |Yes |Tests for when the ``` --abort-on-uncaught-exception ``` flag is used.| | ||
| 16 | 16 | |addons |Yes |Tests for [addon](https://nodejs.org/api/addons.html) functionality along with some tests that require an addon to function properly.| | |
| 17 | 17 | |cctest |Yes |C++ test that is run as part of the build process.| | |
| 18 | 18 | |common | |Common modules shared among many tests. [Documentation](./common/README.md)| | |
| 19 | + |es-module |Yes |Test ESM module loading.| | ||
| 19 | 20 | |fixtures | |Test fixtures used in various tests throughout the test suite.| | |
| 20 | 21 | |gc |No |Tests for garbage collection related functionality.| | |
| 21 | 22 | |inspector |Yes |Tests for the V8 inspector integration.| | |
@@ -29,3 +30,7 @@ On how to run tests in this directory, see | |||
| 29 | 30 | |testpy | |Test configuration utility used by various test suites.| | |
| 30 | 31 | |tick-processor |No |Tests for the V8 tick processor integration. The tests are for the logic in ```lib/internal/v8_prof_processor.js``` and ```lib/internal/v8_prof_polyfill.js```. The tests confirm that the profile processor packages the correct set of scripts from V8 and introduces the correct platform specific logic.| | |
| 31 | 32 | |timers |No |Tests for [timing utilities](https://nodejs.org/api/timers.html) (```setTimeout``` and ```setInterval```).| | |
| 33 | + | ||
| 34 | + _When a new test directory is added, make sure to update the `CI_JS_SUITES` | ||
| 35 | + variable in the `Makefile` and the `js_test_suites` variable in | ||
| 36 | + `vcbuild.bat`._ | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -44,7 +44,7 @@ set enable_static= | |||
| 44 | 44 | set build_addons_napi= | |
| 45 | 45 | set test_node_inspect= | |
| 46 | 46 | set test_check_deopts= | |
| 47 | - set js_test_suites=abort async-hooks inspector known_issues message parallel sequential | ||
| 47 | + set js_test_suites=abort async-hooks es-module inspector known_issues message parallel sequential | ||
| 48 | 48 | set v8_test_options= | |
| 49 | 49 | set v8_build_options= | |
| 50 | 50 | set "common_test_suites=%js_test_suites% doctool addons addons-napi&set build_addons=1&set build_addons_napi=1" | |
| Back | FazBrowse Home | New Git URL |
0 commit comments