We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
~shuffle
1 parent db8ab93 commit 271a329Copy full SHA for 271a329
1 file changed
src/Vitest.res
@@ -4,6 +4,7 @@ type suiteOptions = {
4
timeout?: int,
5
retry?: int,
6
repeats?: int,
7
+ shuffle?: bool,
8
concurrent?: bool,
9
sequential?: bool,
10
skip?: bool,
@@ -49,6 +50,7 @@ module MakeRunner = (Runner: Runner) => {
49
50
~timeout=?,
51
~retry=?,
52
~repeats=?,
53
+ ~shuffle=?,
54
~concurrent=?,
55
~sequential=?,
56
~skip=?,
@@ -63,6 +65,7 @@ module MakeRunner = (Runner: Runner) => {
63
65
?timeout,
64
66
?retry,
67
?repeats,
68
+ ?shuffle,
69
?concurrent,
70
?sequential,
71
?skip,
@@ -201,6 +204,7 @@ module MakeConcurrentRunner = (Runner: ConcurrentRunner) => {
201
204
202
205
203
206
207
208
209
~only=?,
210
~todo=?,
0 commit comments