@@ -146,7 +146,7 @@ test.skipIf(isDev)('prod only test', () => {
146
146
```
147
147
148
148
::: warning
149
- You cannot use this syntax, when using Vitest as [ type checker] ( /guide/testing-types ) .
149
+ You cannot use this syntax when using Vitest as [ type checker] ( /guide/testing-types ) .
150
150
:::
151
151
152
152
### test.runIf
@@ -166,7 +166,7 @@ test.runIf(isDev)('dev only test', () => {
166
166
```
167
167
168
168
::: warning
169
- You cannot use this syntax, when using Vitest as [ type checker] ( /guide/testing-types ) .
169
+ You cannot use this syntax when using Vitest as [ type checker] ( /guide/testing-types ) .
170
170
:::
171
171
172
172
### test.only
@@ -231,7 +231,7 @@ test.concurrent('test 2', async ({ expect }) => {
231
231
```
232
232
233
233
::: warning
234
- You cannot use this syntax, when using Vitest as [ type checker] ( /guide/testing-types ) .
234
+ You cannot use this syntax when using Vitest as [ type checker] ( /guide/testing-types ) .
235
235
:::
236
236
237
237
### test.sequential
@@ -289,7 +289,7 @@ test.fails('fail test', async () => {
289
289
```
290
290
291
291
::: warning
292
- You cannot use this syntax, when using Vitest as [ type checker] ( /guide/testing-types ) .
292
+ You cannot use this syntax when using Vitest as [ type checker] ( /guide/testing-types ) .
293
293
:::
294
294
295
295
### test.each
@@ -390,7 +390,7 @@ Vitest processes `$values` with Chai `format` method. If the value is too trunca
390
390
:::
391
391
392
392
::: warning
393
- You cannot use this syntax, when using Vitest as [ type checker] ( /guide/testing-types ) .
393
+ You cannot use this syntax when using Vitest as [ type checker] ( /guide/testing-types ) .
394
394
:::
395
395
396
396
### test.for
@@ -800,7 +800,7 @@ describe.runIf(isDev)('dev only test suite', () => {
800
800
```
801
801
802
802
::: warning
803
- You cannot use this syntax, when using Vitest as [ type checker] ( /guide/testing-types ) .
803
+ You cannot use this syntax when using Vitest as [ type checker] ( /guide/testing-types ) .
804
804
:::
805
805
806
806
### describe.only
@@ -874,7 +874,7 @@ describe.concurrent('suite', () => {
874
874
```
875
875
876
876
::: warning
877
- You cannot use this syntax, when using Vitest as [ type checker] ( /guide/testing-types ) .
877
+ You cannot use this syntax when using Vitest as [ type checker] ( /guide/testing-types ) .
878
878
:::
879
879
880
880
### describe.sequential
@@ -930,7 +930,7 @@ describe.shuffle('suite', () => {
930
930
` .skip ` , ` .only ` , and ` .todo ` works with random suites.
931
931
932
932
::: warning
933
- You cannot use this syntax, when using Vitest as [ type checker] ( /guide/testing-types ) .
933
+ You cannot use this syntax when using Vitest as [ type checker] ( /guide/testing-types ) .
934
934
:::
935
935
936
936
### describe.todo
@@ -995,7 +995,7 @@ describe.each`
995
995
```
996
996
997
997
::: warning
998
- You cannot use this syntax, when using Vitest as [ type checker] ( /guide/testing-types ) .
998
+ You cannot use this syntax when using Vitest as [ type checker] ( /guide/testing-types ) .
999
999
:::
1000
1000
1001
1001
## Setup and Teardown
0 commit comments