Skip to content

Commit 9163c1a

Browse files
authored
docs(v3): update /api/index (#931)
* docs(v3): update /api/index * typo
1 parent 7ee0030 commit 9163c1a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

api/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ import { assert, describe, test } from 'vitest'
849849

850850
describe.skip('skipped suite', () => {
851851
test('sqrt', () => {
852-
// 套件跳过,没有错误
852+
// 跳过该测试套件,不报错
853853
assert.equal(Math.sqrt(4), 3)
854854
})
855855
})
@@ -914,7 +914,7 @@ describe.only('suite', () => {
914914
})
915915

916916
describe('other suite', () => {
917-
// ... 将被跳过
917+
// 将被跳过...
918918
})
919919
```
920920

@@ -1118,7 +1118,7 @@ describe.each`
11181118
其他非数组情况(包括模板字符串的使用)的工作方式完全相同。
11191119

11201120
```ts
1121-
// `each` 展开数组用例
1121+
// `each` 会展开数组用例
11221122
describe.each([
11231123
[1, 1, 2],
11241124
[1, 2, 3],

0 commit comments

Comments
 (0)