Fix course-package:610 flaky — use expect.poll for post-save API check
Replace fixed waitForTimeout(2000) with expect.poll({ timeout: 15_000 })
so the API verification retries until the created package and its item
association are queryable. CI is slower than local, causing false failures.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -42,19 +42,23 @@ npx playwright test --ui
|
||||
|
||||
### 等待 CI 完成
|
||||
|
||||
使用 `gh run watch` 在后台检测,不要轮询:
|
||||
使用 Monitor 工具配合 `gh run watch`,CI 完成后会自动通知:
|
||||
|
||||
```bash
|
||||
# 获取最新 CI run ID
|
||||
gh run list --repo alchemy-studio/huike-e2e-moicen --limit 1 --json databaseId --jq '.[0].databaseId'
|
||||
|
||||
# 后台 watch(用 & 或 run_in_background),完成后会自动通知
|
||||
gh run watch <run-id> --repo alchemy-studio/huike-e2e-moicen 2>&1 &
|
||||
# Monitor 会自动通知每次状态刷新和最终完成
|
||||
Monitor:
|
||||
command: gh run watch <run-id> --repo alchemy-studio/huike-e2e-moicen 2>&1 | grep -E --line-buffered '(✓ master|✘ master|╳ master|X master)|Process completed'
|
||||
description: Watch CI run completion
|
||||
```
|
||||
|
||||
注意:**不要用 `Bash run_in_background` + `gh run watch`**,因为 Bash 后台任务不会在完成时通知,你会卡住等不到结果。必须用 **Monitor** 工具,它会在每行 stdout 输出时通知你。
|
||||
|
||||
也可以用 `gh run watch --job=<job-id>` 监控特定 job。
|
||||
|
||||
注意:`gh run watch` 依赖当前目录的 git remote 确定仓库,所以要在 `huike-e2e-moicen` 目录下跑,或者用 `--repo` 参数显式指定。
|
||||
`gh run watch` 依赖当前目录的 git remote 确定仓库,所以要在 `huike-e2e-moicen` 目录下跑,或者用 `--repo` 参数显式指定。
|
||||
|
||||
### 两个 Workflow
|
||||
|
||||
|
||||
Reference in New Issue
Block a user