tree: 7a155a00dcce39a30ec9b9cf2e550f953e33bb88 [path history] [tgz]
  1. abort/
  2. addons/
  3. addons-napi/
  4. async-hooks/
  5. cctest/
  6. common/
  7. doctool/
  8. es-module/
  9. fixtures/
  10. gc/
  11. internet/
  12. known_issues/
  13. message/
  14. parallel/
  15. pseudo-tty/
  16. pummel/
  17. sequential/
  18. testpy/
  19. tick-processor/
  20. timers/
  21. v8-updates/
  22. .eslintrc.yaml
  23. README.md
test/README.md

Node.js Core Tests

This directory contains code and data used to test the Node.js implementation.

For a detailed guide on how to write tests in this directory, see the guide on writing tests.

On how to run tests in this directory, see the contributing guide.

For the tests to successfully run on Windows, Node.js has to be checked out from GitHub with the autocrlf git config flag set to true.

Test Directories

DirectoryRuns on CIPurpose
abortYesTests for when the --abort-on-uncaught-exception flag is used.
addonsYesTests for addon functionality along with some tests that require an addon to function properly.
cctestYesC++ test that is run as part of the build process.
commonCommon modules shared among many tests. Documentation
es-moduleYesTest ESM module loading.
fixturesTest fixtures used in various tests throughout the test suite.
gcNoTests for garbage collection related functionality.
internetNoTests that make real outbound connections (mainly networking related modules). Tests for networking related modules may also be present in other directories, but those tests do not make outbound connections.
known_issuesYesTests reproducing known issues within the system. All tests inside of this directory are expected to fail consistently. If a test doesn't fail on certain platforms, those should be skipped via known_issues.status.
messageYesTests for messages that are output for various conditions (console.log, error messages etc.)
parallelYesVarious tests that are able to be run in parallel.
pseudo-ttyYesTests that require stdin/stdout/stderr to be a TTY.
pummelNoVarious tests for various modules / system functionality operating under load.
sequentialYesVarious tests that are run sequentially.
testpyTest configuration utility used by various test suites.
tick-processorNoTests 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.
timersNoTests for timing utilities (setTimeout and setInterval).

When a new test directory is added, make sure to update the CI_JS_SUITES variable in the Makefile and the js_test_suites variable in vcbuild.bat.