Skip to main content
Short alias for monorepo:run with the command list fixed to test. It runs the test script across every package and module of your workspace, in dependency order, with a content-addressed task cache. Every other option is forwarded untouched.

Usage

talos test [options]
This is equivalent to:
talos monorepo:run --commands=test

Examples

Test every package and module:
talos test
Scope testing to specific modules and packages:
talos test --modules=billing,user --packages=billing,user
Stream plain logs instead of the interactive view (for CI):
talos test --logs
Force every task to re-run, ignoring the cache:
talos test --no-cache

Options

OptionDescriptionDefault
--packagesComma-separated package names to include (under packages/).All packages and modules
--modulesComma-separated module names to include (under modules/).All packages and modules
--logsStream plain log lines instead of the interactive view.false
--no-cacheSkip reading and writing the task cache.false
Unlike monorepo:run, test takes no --commands option — the command list is fixed to test.
See the monorepo:run reference for the full details on execution order, caching, and output.