0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test
Nick Stanish a439cf4354 test: fix conversion of microseconds in test
PR-URL: https://github.com/nodejs/node/pull/14706
Fixes: https://github.com/nodejs/node/issues/8728
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
2017-08-09 20:08:23 -07:00
..
abort src: adjust windows abort behavior 2017-08-07 22:46:01 -04:00
addons test: support odd value for kStringMaxLength 2017-08-04 08:44:23 +02:00
addons-napi n-api: optimize number API performance 2017-08-07 17:31:17 -07:00
async-hooks test: replace indexOf with includes 2017-08-08 15:52:39 -07:00
cctest src: avoid dereference without existence check 2017-08-06 15:10:59 +08:00
common src: adjust windows abort behavior 2017-08-07 22:46:01 -04:00
debugger lib,src: fix consistent spacing inside braces 2017-07-21 15:13:47 -04:00
doctool
fixtures test: replace CRLF by LF in a fixture 2017-07-25 21:50:44 +03:00
gc lib,src: fix consistent spacing inside braces 2017-07-21 15:13:47 -04:00
inspector inspector: allow require in Runtime.evaluate 2017-08-07 10:06:19 +08:00
internet lib,src: fix consistent spacing inside braces 2017-07-21 15:13:47 -04:00
known_issues test: adjust indentation for stricter linting 2017-07-27 09:24:20 -07:00
message console,test: make message test more accurate 2017-08-03 15:41:14 +02:00
parallel test: improve check in test-os 2017-08-09 18:46:20 -07:00
pseudo-tty test: adjust indentation for stricter linting 2017-07-27 09:24:20 -07:00
pummel test: fix conversion of microseconds in test 2017-08-09 20:08:23 -07:00
sequential test: begin normalizing fixtures use 2017-08-07 18:00:57 -07:00
testpy
tick-processor
timers test: adjust indentation for stricter linting 2017-07-27 09:24:20 -07:00
.eslintrc.yaml tools: remove legacy indentation linting 2017-07-30 09:21:52 -07:00
README.md test: remove disabled tests directory 2017-07-28 22:06:42 -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.

Test Directories

Directory Runs on CI Purpose
abort No 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.
cctest Yes C++ test that is run as part of the build process.
common Common modules shared among many tests. Documentation
debugger No Tests for debuggerfunctionality along with some tests that require an addon to function properly.
fixtures Test fixtures used in various tests throughout the test suite.
gc No Tests for garbage collection related functionality.
inspector Yes Tests for the V8 inspector integration.
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.
timers No Tests for timing utilities (setTimeout and setInterval).