From 2b3fc0f16dcbfba5ba49c3eb4d50d789bbef0093 Mon Sep 17 00:00:00 2001 From: Vladimir Sheremet Date: Tue, 23 Apr 2024 11:30:56 +0200 Subject: [PATCH] docs: fix cli-table generator --- docs/.vitepress/scripts/cli-generator.ts | 2 +- docs/guide/cli-table.md | 146 ++++++++++----------- packages/vitest/src/node/cli/cli-config.ts | 2 +- 3 files changed, 75 insertions(+), 75 deletions(-) diff --git a/docs/.vitepress/scripts/cli-generator.ts b/docs/.vitepress/scripts/cli-generator.ts index a805a9243820..f6ea9e8f8a16 100644 --- a/docs/.vitepress/scripts/cli-generator.ts +++ b/docs/.vitepress/scripts/cli-generator.ts @@ -30,7 +30,7 @@ function resolveCommand(name: string, config: CLIOption | null): any { title += ` ${config.argument}` title += '`' if ('subcommands' in config && config.subcommands) - return resolveOptions(config.subcommands) + return resolveOptions(config.subcommands, name) return { title, diff --git a/docs/guide/cli-table.md b/docs/guide/cli-table.md index 187f687b7675..3f5581b8e2ef 100644 --- a/docs/guide/cli-table.md +++ b/docs/guide/cli-table.md @@ -8,77 +8,77 @@ | `--dir ` | Base directory to scan for the test files | | `--ui` | Enable UI | | `--open` | Open UI automatically (default: `!process.env.CI`) | -| `--port [port]` | Specify server port. Note if the port is already being used, Vite will automatically try the next available port so this may not be the actual port the server ends up listening on. If true will be set to `51204` | -| `--host [host]` | Specify which IP addresses the server should listen on. Set this to `0.0.0.0` or `true` to listen on all addresses, including LAN and public addresses | -| `--strictPort` | Set to true to exit if port is already in use, instead of automatically trying the next available port | +| `--api.port [port]` | Specify server port. Note if the port is already being used, Vite will automatically try the next available port so this may not be the actual port the server ends up listening on. If true will be set to `51204` | +| `--api.host [host]` | Specify which IP addresses the server should listen on. Set this to `0.0.0.0` or `true` to listen on all addresses, including LAN and public addresses | +| `--api.strictPort` | Set to true to exit if port is already in use, instead of automatically trying the next available port | | `--silent` | Silent console output from tests | | `--hideSkippedTests` | Hide logs for skipped tests | | `--reporter ` | Specify reporters | | `--outputFile ` | Write test results to a file when supporter reporter is also specified, use cac's dot notation for individual outputs of multiple reporters (example: --outputFile.tap=./tap.txt) | -| `--all` | Whether to include all files, including the untested ones into report | -| `--provider ` | Select the tool for coverage collection, available values are: "v8", "istanbul" and "custom" | -| `--enabled` | Enables coverage collection. Can be overridden using the `--coverage` CLI option (default: `false`) | -| `--include ` | Files included in coverage as glob patterns. May be specified more than once when using multiple patterns (default: `**`) | -| `--exclude ` | Files to be excluded in coverage. May be specified more than once when using multiple extensions (default: Visit [`coverage.exclude`](https://vitest.dev/config/#coverage-exclude)) | -| `--extension ` | Extension to be included in coverage. May be specified more than once when using multiple extensions (default: `[".js", ".cjs", ".mjs", ".ts", ".mts", ".cts", ".tsx", ".jsx", ".vue", ".svelte"]`) | -| `--clean` | Clean coverage results before running tests (default: true) | -| `--cleanOnRerun` | Clean coverage report on watch rerun (default: true) | -| `--reportsDirectory ` | Directory to write coverage report to (default: ./coverage) | -| `--reporter ` | Coverage reporters to use. Visit [`coverage.reporter`](https://vitest.dev/config/#coverage-reporter) for more information (default: `["text", "html", "clover", "json"]`) | -| `--reportOnFailure` | Generate coverage report even when tests fail (default: false) | -| `--allowExternal` | Collect coverage of files outside the project root (default: false) | -| `--skipFull` | Do not show files with 100% statement, branch, and function coverage (default: false) | -| `--100` | Shortcut to set all coverage thresholds to 100 (default: `false`) | -| `--perFile` | Check thresholds per file. See `--coverage.thresholds.lines`, `--coverage.thresholds.functions`, `--coverage.thresholds.branches` and `--coverage.thresholds.statements` for the actual thresholds (default: `false`) | -| `--autoUpdate` | Update threshold values: "lines", "functions", "branches" and "statements" to configuration file when current coverage is above the configured thresholds (default: `false`) | -| `--lines ` | Threshold for lines. Visit [istanbuljs](https://github.com/istanbuljs/nyc#coverage-thresholds) for more information. This option is not available for custom providers | -| `--functions ` | Threshold for functions. Visit [istanbuljs](https://github.com/istanbuljs/nyc#coverage-thresholds) for more information. This option is not available for custom providers | -| `--branches ` | Threshold for branches. Visit [istanbuljs](https://github.com/istanbuljs/nyc#coverage-thresholds) for more information. This option is not available for custom providers | -| `--statements ` | Threshold for statements. Visit [istanbuljs](https://github.com/istanbuljs/nyc#coverage-thresholds) for more information. This option is not available for custom providers | -| `--ignoreClassMethods ` | Array of class method names to ignore for coverage. Visit [istanbuljs](https://github.com/istanbuljs/nyc#ignoring-methods) for more information. This option is only available for the istanbul providers (default: `[]`) | -| `--processingConcurrency ` | Concurrency limit used when processing the coverage results. (default min between 20 and the number of CPUs) | -| `--customProviderModule ` | Specifies the module name or path for the custom coverage provider module. Visit [Custom Coverage Provider](https://vitest.dev/guide/coverage#custom-coverage-provider) for more information. This option is only available for custom providers | -| `--statements ` | High and low watermarks for statements in the format of `,` | -| `--lines ` | High and low watermarks for lines in the format of `,` | -| `--branches ` | High and low watermarks for branches in the format of `,` | -| `--functions ` | High and low watermarks for functions in the format of `,` | +| `--coverage.all` | Whether to include all files, including the untested ones into report | +| `--coverage.provider ` | Select the tool for coverage collection, available values are: "v8", "istanbul" and "custom" | +| `--coverage.enabled` | Enables coverage collection. Can be overridden using the `--coverage` CLI option (default: `false`) | +| `--coverage.include ` | Files included in coverage as glob patterns. May be specified more than once when using multiple patterns (default: `**`) | +| `--coverage.exclude ` | Files to be excluded in coverage. May be specified more than once when using multiple extensions (default: Visit [`coverage.exclude`](https://vitest.dev/config/#coverage-exclude)) | +| `--coverage.extension ` | Extension to be included in coverage. May be specified more than once when using multiple extensions (default: `[".js", ".cjs", ".mjs", ".ts", ".mts", ".cts", ".tsx", ".jsx", ".vue", ".svelte"]`) | +| `--coverage.clean` | Clean coverage results before running tests (default: true) | +| `--coverage.cleanOnRerun` | Clean coverage report on watch rerun (default: true) | +| `--coverage.reportsDirectory ` | Directory to write coverage report to (default: ./coverage) | +| `--coverage.reporter ` | Coverage reporters to use. Visit [`coverage.reporter`](https://vitest.dev/config/#coverage-reporter) for more information (default: `["text", "html", "clover", "json"]`) | +| `--coverage.reportOnFailure` | Generate coverage report even when tests fail (default: false) | +| `--coverage.allowExternal` | Collect coverage of files outside the project root (default: false) | +| `--coverage.skipFull` | Do not show files with 100% statement, branch, and function coverage (default: false) | +| `--coverage.thresholds.100` | Shortcut to set all coverage thresholds to 100 (default: `false`) | +| `--coverage.thresholds.perFile` | Check thresholds per file. See `--coverage.thresholds.lines`, `--coverage.thresholds.functions`, `--coverage.thresholds.branches` and `--coverage.thresholds.statements` for the actual thresholds (default: `false`) | +| `--coverage.thresholds.autoUpdate` | Update threshold values: "lines", "functions", "branches" and "statements" to configuration file when current coverage is above the configured thresholds (default: `false`) | +| `--coverage.thresholds.lines ` | Threshold for lines. Visit [istanbuljs](https://github.com/istanbuljs/nyc#coverage-thresholds) for more information. This option is not available for custom providers | +| `--coverage.thresholds.functions ` | Threshold for functions. Visit [istanbuljs](https://github.com/istanbuljs/nyc#coverage-thresholds) for more information. This option is not available for custom providers | +| `--coverage.thresholds.branches ` | Threshold for branches. Visit [istanbuljs](https://github.com/istanbuljs/nyc#coverage-thresholds) for more information. This option is not available for custom providers | +| `--coverage.thresholds.statements ` | Threshold for statements. Visit [istanbuljs](https://github.com/istanbuljs/nyc#coverage-thresholds) for more information. This option is not available for custom providers | +| `--coverage.ignoreClassMethods ` | Array of class method names to ignore for coverage. Visit [istanbuljs](https://github.com/istanbuljs/nyc#ignoring-methods) for more information. This option is only available for the istanbul providers (default: `[]`) | +| `--coverage.processingConcurrency ` | Concurrency limit used when processing the coverage results. (default min between 20 and the number of CPUs) | +| `--coverage.customProviderModule ` | Specifies the module name or path for the custom coverage provider module. Visit [Custom Coverage Provider](https://vitest.dev/guide/coverage#custom-coverage-provider) for more information. This option is only available for custom providers | +| `--coverage.watermarks.statements ` | High and low watermarks for statements in the format of `,` | +| `--coverage.watermarks.lines ` | High and low watermarks for lines in the format of `,` | +| `--coverage.watermarks.branches ` | High and low watermarks for branches in the format of `,` | +| `--coverage.watermarks.functions ` | High and low watermarks for functions in the format of `,` | | `--mode ` | Override Vite mode (default: `test` or `benchmark`) | | `--workspace ` | Path to a workspace configuration file | | `--isolate` | Run every test file in isolation. To disable isolation, use `--no-isolate` (default: `true`) | | `--globals` | Inject apis globally | | `--dom` | Mock browser API with happy-dom | -| `--enabled` | Run tests in the browser. Equivalent to `--browser.enabled` (default: `false`) | -| `--name ` | Run all tests in a specific browser. Some browsers are only available for specific providers (see `--browser.provider`). Visit [`browser.name`](https://vitest.dev/config/#browser-name) for more information | -| `--headless` | Run the browser in headless mode (i.e. without opening the GUI (Graphical User Interface)). If you are running Vitest in CI, it will be enabled by default (default: `process.env.CI`) | -| `--port [port]` | Specify server port. Note if the port is already being used, Vite will automatically try the next available port so this may not be the actual port the server ends up listening on. If true will be set to `63315` | -| `--host [host]` | Specify which IP addresses the server should listen on. Set this to `0.0.0.0` or `true` to listen on all addresses, including LAN and public addresses | -| `--strictPort` | Set to true to exit if port is already in use, instead of automatically trying the next available port | -| `--provider ` | Provider used to run browser tests. Some browsers are only available for specific providers. Can be "webdriverio", "playwright", or the path to a custom provider. Visit [`browser.provider`](https://vitest.dev/config/#browser-provider) for more information (default: `"webdriverio"`) | -| `--providerOptions ` | Options that are passed down to a browser provider. Visit [`browser.providerOptions`](https://vitest.dev/config/#browser-provideroptions) for more information | -| `--slowHijackESM` | Let Vitest use its own module resolution on the browser to enable APIs such as vi.mock and vi.spyOn. Visit [`browser.slowHijackESM`](https://vitest.dev/config/#browser-slowhijackesm) for more information (default: `false`) | -| `--isolate` | Run every browser test file in isolation. To disable isolation, use `--browser.isolate=false` (default: `true`) | -| `--fileParallelism` | Should all test files run in parallel. Use `--browser.file-parallelism=false` to disable (default: same as `--file-parallelism`) | +| `--browser.enabled` | Run tests in the browser. Equivalent to `--browser.enabled` (default: `false`) | +| `--browser.name ` | Run all tests in a specific browser. Some browsers are only available for specific providers (see `--browser.provider`). Visit [`browser.name`](https://vitest.dev/config/#browser-name) for more information | +| `--browser.headless` | Run the browser in headless mode (i.e. without opening the GUI (Graphical User Interface)). If you are running Vitest in CI, it will be enabled by default (default: `process.env.CI`) | +| `--browser.api.port [port]` | Specify server port. Note if the port is already being used, Vite will automatically try the next available port so this may not be the actual port the server ends up listening on. If true will be set to `63315` | +| `--browser.api.host [host]` | Specify which IP addresses the server should listen on. Set this to `0.0.0.0` or `true` to listen on all addresses, including LAN and public addresses | +| `--browser.api.strictPort` | Set to true to exit if port is already in use, instead of automatically trying the next available port | +| `--browser.provider ` | Provider used to run browser tests. Some browsers are only available for specific providers. Can be "webdriverio", "playwright", or the path to a custom provider. Visit [`browser.provider`](https://vitest.dev/config/#browser-provider) for more information (default: `"webdriverio"`) | +| `--browser.providerOptions ` | Options that are passed down to a browser provider. Visit [`browser.providerOptions`](https://vitest.dev/config/#browser-provideroptions) for more information | +| `--browser.slowHijackESM` | Let Vitest use its own module resolution on the browser to enable APIs such as vi.mock and vi.spyOn. Visit [`browser.slowHijackESM`](https://vitest.dev/config/#browser-slowhijackesm) for more information (default: `false`) | +| `--browser.isolate` | Run every browser test file in isolation. To disable isolation, use `--browser.isolate=false` (default: `true`) | +| `--browser.fileParallelism` | Should all test files run in parallel. Use `--browser.file-parallelism=false` to disable (default: same as `--file-parallelism`) | | `--pool ` | Specify pool, if not running in the browser (default: `threads`) | -| `--isolate` | Isolate tests in threads pool (default: `true`) | -| `--singleThread` | Run tests inside a single thread (default: `false`) | -| `--maxThreads ` | Maximum number of threads to run tests in | -| `--minThreads ` | Minimum number of threads to run tests in | -| `--useAtomics` | Use Atomics to synchronize threads. This can improve performance in some cases, but might cause segfault in older Node versions (default: `false`) | -| `--isolate` | Isolate tests in threads pool (default: `true`) | -| `--singleThread` | Run tests inside a single thread (default: `false`) | -| `--maxThreads ` | Maximum number of threads to run tests in | -| `--minThreads ` | Minimum number of threads to run tests in | -| `--useAtomics` | Use Atomics to synchronize threads. This can improve performance in some cases, but might cause segfault in older Node versions (default: `false`) | -| `--memoryLimit ` | Memory limit for VM threads pool. If you see memory leaks, try to tinker this value. | -| `--isolate` | Isolate tests in threads pool (default: `true`) | -| `--singleFork` | Run tests inside a single child_process (default: `false`) | -| `--maxForks ` | Maximum number of processes to run tests in | -| `--minForks ` | Minimum number of processes to run tests in | -| `--isolate` | Isolate tests in threads pool (default: `true`) | -| `--singleFork` | Run tests inside a single child_process (default: `false`) | -| `--maxForks ` | Maximum number of processes to run tests in | -| `--minForks ` | Minimum number of processes to run tests in | -| `--memoryLimit ` | Memory limit for VM forks pool. If you see memory leaks, try to tinker this value. | +| `--poolOptions.threads.isolate` | Isolate tests in threads pool (default: `true`) | +| `--poolOptions.threads.singleThread` | Run tests inside a single thread (default: `false`) | +| `--poolOptions.threads.maxThreads ` | Maximum number of threads to run tests in | +| `--poolOptions.threads.minThreads ` | Minimum number of threads to run tests in | +| `--poolOptions.threads.useAtomics` | Use Atomics to synchronize threads. This can improve performance in some cases, but might cause segfault in older Node versions (default: `false`) | +| `--poolOptions.vmThreads.isolate` | Isolate tests in threads pool (default: `true`) | +| `--poolOptions.vmThreads.singleThread` | Run tests inside a single thread (default: `false`) | +| `--poolOptions.vmThreads.maxThreads ` | Maximum number of threads to run tests in | +| `--poolOptions.vmThreads.minThreads ` | Minimum number of threads to run tests in | +| `--poolOptions.vmThreads.useAtomics` | Use Atomics to synchronize threads. This can improve performance in some cases, but might cause segfault in older Node versions (default: `false`) | +| `--poolOptions.vmThreads.memoryLimit ` | Memory limit for VM threads pool. If you see memory leaks, try to tinker this value. | +| `--poolOptions.forks.isolate` | Isolate tests in forks pool (default: `true`) | +| `--poolOptions.forks.singleFork` | Run tests inside a single child_process (default: `false`) | +| `--poolOptions.forks.maxForks ` | Maximum number of processes to run tests in | +| `--poolOptions.forks.minForks ` | Minimum number of processes to run tests in | +| `--poolOptions.vmForks.isolate` | Isolate tests in forks pool (default: `true`) | +| `--poolOptions.vmForks.singleFork` | Run tests inside a single child_process (default: `false`) | +| `--poolOptions.vmForks.maxForks ` | Maximum number of processes to run tests in | +| `--poolOptions.vmForks.minForks ` | Minimum number of processes to run tests in | +| `--poolOptions.vmForks.memoryLimit ` | Memory limit for VM forks pool. If you see memory leaks, try to tinker this value. | | `--fileParallelism` | Should all test files run in parallel. Use `--no-file-parallelism` to disable (default: `true`) | | `--maxWorkers ` | Maximum number of workers to run tests in | | `--minWorkers ` | Minimum number of workers to run tests in | @@ -89,12 +89,12 @@ | `--dangerouslyIgnoreUnhandledErrors` | Ignore any unhandled errors that occur | | `--shard ` | Test suite shard to execute in a format of `/` | | `--changed [since]` | Run tests that are affected by the changed files (default: `false`) | -| `--files` | Run files in a random order. Long running tests will not start earlier if you enable this option. (default: `false`) | -| `--tests` | Run tests in a random oder (default: `false`) | -| `--concurrent` | Make tests run in parallel (default: `false`) | -| `--seed ` | Set the randomization seed. This option will have no effect if --sequence.shuffle is falsy. Visit ["Random Seed" page](https://en.wikipedia.org/wiki/Random_seed) for more information | -| `--hooks ` | Changes the order in which hooks are executed. Accepted values are: "stack", "list" and "parallel". Visit [`sequence.hooks`](https://vitest.dev/config/#sequence-hooks) for more information (default: `"parallel"`) | -| `--setupFiles ` | Changes the order in which setup files are executed. Accepted values are: "list" and "parallel". If set to "list", will run setup files in the order they are defined. If set to "parallel", will run setup files in parallel (default: `"parallel"`) | +| `--sequence.shuffle.files` | Run files in a random order. Long running tests will not start earlier if you enable this option. (default: `false`) | +| `--sequence.shuffle.tests` | Run tests in a random oder (default: `false`) | +| `--sequence.concurrent` | Make tests run in parallel (default: `false`) | +| `--sequence.seed ` | Set the randomization seed. This option will have no effect if --sequence.shuffle is falsy. Visit ["Random Seed" page](https://en.wikipedia.org/wiki/Random_seed) for more information | +| `--sequence.hooks ` | Changes the order in which hooks are executed. Accepted values are: "stack", "list" and "parallel". Visit [`sequence.hooks`](https://vitest.dev/config/#sequence-hooks) for more information (default: `"parallel"`) | +| `--sequence.setupFiles ` | Changes the order in which setup files are executed. Accepted values are: "list" and "parallel". If set to "list", will run setup files in the order they are defined. If set to "parallel", will run setup files in parallel (default: `"parallel"`) | | `--inspect [[host:]port]` | Enable Node.js inspector (default: `127.0.0.1:9229`) | | `--inspectBrk [[host:]port]` | Enable Node.js inspector and break before the test starts | | `--testTimeout ` | Default timeout of a test in milliseconds (default: `5000`) | @@ -105,12 +105,12 @@ | `--exclude ` | Additional file globs to be excluded from test | | `--expandSnapshotDiff` | Show full diff when snapshot fails | | `--disableConsoleIntercept` | Disable automatic interception of console logging (default: `false`) | -| `--enabled` | Enable typechecking alongside tests (default: `false`) | -| `--only` | Run only typecheck tests. This automatically enables typecheck (default: `false`) | -| `--checker ` | Specify the typechecker to use. Available values are: "tcs" and "vue-tsc" and a path to an executable (default: `"tsc"`) | -| `--allowJs` | Allow JavaScript files to be typechecked. By default takes the value from tsconfig.json | -| `--ignoreSourceErrors` | Ignore type errors from source files | -| `--tsconfig ` | Path to a custom tsconfig file | +| `--typecheck.enabled` | Enable typechecking alongside tests (default: `false`) | +| `--typecheck.only` | Run only typecheck tests. This automatically enables typecheck (default: `false`) | +| `--typecheck.checker ` | Specify the typechecker to use. Available values are: "tcs" and "vue-tsc" and a path to an executable (default: `"tsc"`) | +| `--typecheck.allowJs` | Allow JavaScript files to be typechecked. By default takes the value from tsconfig.json | +| `--typecheck.ignoreSourceErrors` | Ignore type errors from source files | +| `--typecheck.tsconfig ` | Path to a custom tsconfig file | | `--project ` | The name of the project to run if you are using Vitest workspace feature. This can be repeated for multiple projects: `--project=1 --project=2`. You can also filter projects using wildcards like `--project=packages*` | | `--slowTestThreshold ` | Threshold in milliseconds for a test to be considered slow (default: `300`) | | `--teardownTimeout ` | Default timeout of a teardown function in milliseconds (default: `10000`) | diff --git a/packages/vitest/src/node/cli/cli-config.ts b/packages/vitest/src/node/cli/cli-config.ts index b104399123b4..e89164f05b7e 100644 --- a/packages/vitest/src/node/cli/cli-config.ts +++ b/packages/vitest/src/node/cli/cli-config.ts @@ -65,7 +65,7 @@ const poolThreadsCommands: CLIOptions = { const poolForksCommands: CLIOptions = { isolate: { - description: 'Isolate tests in threads pool (default: `true`)', + description: 'Isolate tests in forks pool (default: `true`)', }, singleFork: { description: 'Run tests inside a single child_process (default: `false`)',