OptionalconcurrentOptionalgroupControls the order in which this project runs its tests when using multiple projects.
OptionalhooksDefines how hooks should be ordered
stack will order "after" hooks in reverse order, "before" hooks will run sequentiallylist will order hooks in the order they are definedparallel will run hooks in a single group in parallelOptionalseedSeed for the random number generator.
OptionalsequencerClass that handles sorting and sharding algorithm.
If you only need to change sorting, you can extend
your custom sequencer from BaseSequencer from vitest/node.
OptionalsetupDefines how setup files should be ordered
OptionalshuffleShould files and tests run in random order.
Optionalfiles?: booleanShould files run in random order. Long running tests will not start earlier if you enable this option.
Optionaltests?: booleanShould tests run in random order.
Should tests run in parallel.