node/test
seantcoyote f87e96665e
test: fix assertion arguments order
There's no issue for this PR, it's a task at the Node+JS Code-n-Learn.

PR-URL: https://github.com/nodejs/node/pull/23584
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
2018-10-15 15:33:11 +02:00
..
abort test: remove isGlibc from common 2018-08-23 16:14:44 -07:00
addons buffer: move process.binding('buffer') to internalBinding 2018-10-15 19:01:20 +08:00
addons-napi test: fix order of assert.strictEqual() args to actual, expected 2018-10-15 12:00:00 +02:00
async-hooks test: move tick.js from test/async-hooks to test/common 2018-10-15 07:41:12 +02:00
cctest src: trace_event: secondary storage for metadata 2018-10-12 14:12:31 -07:00
code-cache build: create V8 code cache after script is run 2018-07-27 14:51:27 +08:00
common doc: add "tick" function name and argument description 2018-10-15 07:41:37 +02:00
doctool doc: remove GA tracking 2018-10-04 07:18:23 +02:00
es-module vm: add dynamic import support 2018-10-06 17:33:25 -05:00
fixtures test: refactor common.ddCommand() 2018-10-12 13:48:42 -07:00
internet benchmark,doc,lib,src,test,tools: fix typos 2018-10-09 16:53:12 +03:00
known_issues test: reversed arguments in strictqual to reflect documentation 2018-10-15 12:00:00 +02:00
message assert: switch inputs to values 2018-09-27 13:25:18 +02:00
parallel test: fix assertion arguments order 2018-10-15 15:33:11 +02:00
pseudo-tty test: add stdin writable regression test 2018-10-04 09:20:25 -07:00
pummel test: removed unused variable in fs-watch-file-slow 2018-10-15 12:08:04 +02:00
sequential buffer: move process.binding('buffer') to internalBinding 2018-10-15 19:01:20 +08:00
testpy test: remove custom AsyncHooksTestConfiguration 2018-07-30 23:50:17 -04:00
tick-processor test: move common.isCPPSymbolsNotMapped to tick-processor tests 2018-08-24 11:14:07 -07:00
v8-updates test: update postmortem metadata test for V8 7.0 2018-09-22 18:29:59 +02:00
.eslintrc.yaml tools: prevent string literals in some assertions 2018-09-16 20:37:42 -07:00
README.md test,doc: adjust markdown table for linting 2018-08-12 15:30:12 -07:00

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.