Skip to content

Commit 271a329

Browse files
committed
Add ~shuffle option to describe
1 parent db8ab93 commit 271a329

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/Vitest.res

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ type suiteOptions = {
44
timeout?: int,
55
retry?: int,
66
repeats?: int,
7+
shuffle?: bool,
78
concurrent?: bool,
89
sequential?: bool,
910
skip?: bool,
@@ -49,6 +50,7 @@ module MakeRunner = (Runner: Runner) => {
4950
~timeout=?,
5051
~retry=?,
5152
~repeats=?,
53+
~shuffle=?,
5254
~concurrent=?,
5355
~sequential=?,
5456
~skip=?,
@@ -63,6 +65,7 @@ module MakeRunner = (Runner: Runner) => {
6365
?timeout,
6466
?retry,
6567
?repeats,
68+
?shuffle,
6669
?concurrent,
6770
?sequential,
6871
?skip,
@@ -201,6 +204,7 @@ module MakeConcurrentRunner = (Runner: ConcurrentRunner) => {
201204
~timeout=?,
202205
~retry=?,
203206
~repeats=?,
207+
~shuffle=?,
204208
~skip=?,
205209
~only=?,
206210
~todo=?,

0 commit comments

Comments
 (0)