Wallaby now provides experimental support for node:test. As an experimental feature, you may encounter issues. Please report any issues or provide feedback to us via our github issues repository.
Wallaby’s integration with node:test
requires node v22.3.0 or higher.
Select your editor
The content of this page is adjusted based on your editor of choice. Please select your editor by clicking on your editor’s logo below before proceeding:




Starting Wallaby on a project using node:test
To start Wallaby in VS Code you may run Select Configuration
command and then select Automatic Configuration <project directory>
option once. After that you may keep using Wallaby Start
command as usual and it will start Wallaby with automatic configuration.
Configuration Defaults
Wallaby will attempt to automatically detect and configure your project if it uses node:test
; for most projects,
you will not need to provide any additional configuration or create a configuration file.
Default File and Test Patterns
Wallaby provides default settings for files
and tests
and requires that at least one test file imports
node:test
to detect and configure your project. The default settings are shown below:
TypeScript Compilers
If you are using TypeScript, Wallaby will automatically detect and configure your TypeScript compiler settings. Wallaby provides built-in support for TypeScript and will attempt to resolve the TypeScript compiler based on your project dependencies in the following order:
@swc-node/register
ts-node
tsx
esbuild-register
(does not support ESM projects)
If you have one of the above TypeScript compilers installed in your project, there is no need to do anything else. If you do not have one of the above TypeScript compilers installed, you will need to install one of them in your project.
Wallaby’s TypeScript compiler resolution is set automatically using Wallaby’s esmHooks
and preloadModules
settings.
You may override these settings in your Wallaby configuration file if you need to use a different TypeScript compiler,
or if you need to configure another esm hook or preload module.
Limiting Automatic Configuration to node:test
If your project uses
multiple testing frameworks supported by Wallaby’s automatic configuration, they will be resolved first and node:test
will be ignored. To explicitly specify for Wallaby to only try to use node:test
, you must set the autoDetect
setting
by providing and using a Wallaby configuration file:
Overriding Automatic Configuration
Sometimes you may want to add/override some Wallaby configuration settings to the automatically detected settings. For example, if you want to exclude some tests when you are using Wallaby but not when you are running tests from the command-line or Continuous Integration build. You may configure an override in a configuration file or package.json
section.
After creating Wallaby config file to override automatic defaults in VS Code you need to run Select Configuration
command and then select the config file once. After that you may keep using Wallaby Start
command as usual and it will start Wallaby with the configuration file.
Note that if you are adding/overriding files
/tests
, then you need to add the autoDetect: true
setting:
Troubleshooting
The first step of troubleshooting your project is to identify whether the same results are returned using node --test ...
from the command-line. Running node --test ...
from the command-line will usually show/highlight the cause of your problem.
If Wallaby is not working but node --test ...
CLI is working, please report this to the Wallaby team.
If you get stuck or something isn’t working for you, you may find further troubleshooting steps here or else find a similar solved issue in our github issues repository. If you can’t find a solution, create a new issue.