tree: 8a7fb6f4ddf3a658989c67dae02989e72e12b1e0 [path history] [tgz]
  1. abort/
  2. addons/
  3. addons-napi/
  4. async-hooks/
  5. cctest/
  6. code-cache/
  7. common/
  8. doctool/
  9. es-module/
  10. fixtures/
  11. internet/
  12. known_issues/
  13. message/
  14. parallel/
  15. pseudo-tty/
  16. pummel/
  17. sequential/
  18. testpy/
  19. tick-processor/
  20. v8-updates/
  21. .eslintrc.yaml
  22. README.md
  23. root.status
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.
addons-napiYesTests for n-api functionality.
async-hooksYesTests for async_hooks functionality.
cctestYesC++ tests that are run as part of the build process.
code-cacheNoTests for a Node.js binary compiled with V8 code cache.
commonCommon modules shared among many tests. Documentation
doctoolYesTests for the documentation generator.
es-moduleYesTest ESM module loading.
fixturesTest fixtures used in various tests throughout the test suite.
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.
v8-updatesNoTests for V8 performance integration.