node/test
Rich Trott c75c917823 test: remove common.hasTracing
`common.hasTracing` is only used in one place. `common` is bloated so
let's move that to the one test that uses it.

`hasTracing` is undocumented so there's no need to remove it from the
README file as it's not there in the first place.

Similarly, it's not included in the .mjs version of the `common` file.

PR-URL: https://github.com/nodejs/node/pull/22250
Reviewed-By: Bryan English <bryan@bryanenglish.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: George Adams <george.adams@uk.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2018-08-13 22:17:58 -07:00
..
abort worker,src: display remaining handles if `uv_loop_close` fails 2018-06-13 12:23:36 +02:00
addons test: make crashOnUnhandleRejection opt-out 2018-07-19 08:47:28 +02:00
addons-napi test: remove unused argument in assertion 2018-08-07 10:52:04 -07:00
async-hooks test,doc: adjust async-hooks coverage doc for lint 2018-08-12 15:30:10 -07:00
cctest src: rename PROVIDER_FSREQWRAP to PROVIDER_FSREQCALLBACK 2018-08-01 15:07:14 -04:00
code-cache build: create V8 code cache after script is run 2018-07-27 14:51:27 +08:00
common test: remove common.hasTracing 2018-08-13 22:17:58 -07:00
doctool tools: produce JSON documentation using unified/remark/rehype 2018-07-25 21:33:06 +03:00
es-module test: run ESM tests in parallel 2018-08-04 18:14:13 +02:00
fixtures test,doc: fix lint error in test fixtures 2018-08-12 15:30:04 -07:00
internet test: remove setTimeout in test-net-connect-unref 2018-07-26 16:43:21 -07:00
known_issues test: make crashOnUnhandleRejection opt-out 2018-07-19 08:47:28 +02:00
message assert: multiple improvements 2018-08-04 10:04:32 +02:00
parallel test: remove common.hasTracing 2018-08-13 22:17:58 -07:00
pseudo-tty stream: fix readable behavior for highWaterMark === 0 2018-08-10 17:16:59 +02:00
pummel test: remove common.fileExists() 2018-08-08 09:17:44 -07:00
sequential inspector: unmark tests as flaky 2018-08-13 09:15:23 -07:00
testpy test: remove custom AsyncHooksTestConfiguration 2018-07-30 23:50:17 -04:00
tick-processor
v8-updates test: update postmortem metadata test 2018-07-26 08:34:59 +02:00
.eslintrc.yaml tools: add no-duplicate-requires rule 2018-07-12 16:11:11 -05:00
README.md test,doc: adjust markdown table for linting 2018-08-12 15:30:12 -07:00

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

Directory Runs on CI Purpose
abort Yes Tests for when the --abort-on-uncaught-exception flag is used.
addons Yes Tests for addon functionality along with some tests that require an addon to function properly.
addons-napi Yes Tests for n-api functionality.
async-hooks Yes Tests for async_hooks functionality.
cctest Yes C++ tests that are run as part of the build process.
code-cache No Tests for a Node.js binary compiled with V8 code cache.
common Common modules shared among many tests. Documentation
doctool Yes Tests for the documentation generator.
es-module Yes Test ESM module loading.
fixtures Test fixtures used in various tests throughout the test suite.
internet No Tests 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_issues Yes Tests 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.
message Yes Tests for messages that are output for various conditions (console.log, error messages etc.)
parallel Yes Various tests that are able to be run in parallel.
pseudo-tty Yes Tests that require stdin/stdout/stderr to be a TTY.
pummel No Various tests for various modules / system functionality operating under load.
sequential Yes Various tests that are run sequentially.
testpy Test configuration utility used by various test suites.
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.
v8-updates No Tests for V8 performance integration.