From 1f05c0fd01121c6ef4a70158d154e6a77cdc2e8f Mon Sep 17 00:00:00 2001 From: Rian Fowler <4998130+rianfowler@users.noreply.github.com> Date: Wed, 12 Jul 2023 15:37:29 -0500 Subject: [PATCH] docs(cli): add --sequence flag example --- docs/guide/cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/cli.md b/docs/guide/cli.md index 84f5d0704376..11a3ad0ea9ec 100644 --- a/docs/guide/cli.md +++ b/docs/guide/cli.md @@ -88,7 +88,7 @@ Run only [benchmark](https://vitest.dev/guide/features.html#benchmarking-experim | `--dangerouslyIgnoreUnhandledErrors` | Ignore any unhandled errors that occur | | `--changed [since]` | Run tests that are affected by the changed files (default: false). See [docs](#changed) | | `--shard ` | Execute tests in a specified shard | -| `--sequence` | Define in what order to run tests. Use [cac's dot notation] to specify options (for example, use `--sequence.shuffle` to run tests in random order) | +| `--sequence` | Define in what order to run tests. Use [cac's dot notation] to specify options (for example, use `--sequence.shuffle` to run tests in random order or `--sequence.shuffle --sequence.seed SEED_ID` to run a specific order) | | `--no-color` | Removes colors from the console output | | `--inspect` | Enables Node.js inspector | | `--inspect-brk` | Enables Node.js inspector with break |