Format and simplify intergration test (#245)

This commit is contained in:
ykiko
2025-09-07 23:27:39 +08:00
committed by GitHub
parent 5e273415ee
commit 3cc3bae441
89 changed files with 479 additions and 452 deletions

View File

@@ -18,9 +18,9 @@
- `*`: 匹配路径段中的一个或多个字符。
- `?`: 匹配路径段中的单个字符。
- `**`: 匹配任意数量的路径段,包括零个。
- `{}`: 用于分组条件 (例如, `**/*.{ts,js}` 匹配所有 TypeScript 和 JavaScript 文件)。
- `[]`: 声明要匹配的路径段中的字符范围 (例如, `example.[0-9]` 匹配 `example.0`, `example.1` 等)。
- `[!...]`: 排除要匹配的路径段中的字符范围 (例如, `example.[!0-9]` 匹配 `example.a`, `example.b`,但不匹配 `example.0`)。
- `{}`: 用于分组条件 (例如`**/*.{ts,js}` 匹配所有 TypeScript 和 JavaScript 文件)。
- `[]`: 声明要匹配的路径段中的字符范围 (例如`example.[0-9]` 匹配 `example.0`, `example.1` 等)。
- `[!...]`: 排除要匹配的路径段中的字符范围 (例如`example.[!0-9]` 匹配 `example.a`, `example.b`,但不匹配 `example.0`)。
<br>
| 名称             | 类型                | 默认值 |
@@ -89,4 +89,4 @@
用于储存索引文件的文件夹。
<br>
## Feature
## Feature