feat(batch): add copy buttons for all/retry governance links on batch show

This commit is contained in:
萝卜
2026-03-18 03:03:59 +08:00
parent 055db04e41
commit d1805f1c21
2 changed files with 11 additions and 0 deletions

View File

@@ -33,6 +33,14 @@ class AdminPlatformBatchShowPageCopyGovernanceLinksButtonsShouldRenderTest exten
->getContent();
$this->assertStringContainsString('data-action="copy-link"', $html);
// 已存在:本批次失败 / 按Top原因
$this->assertStringContainsString('data-role="copy-failed-link"', $html);
// 新增:本批次全部
$this->assertStringContainsString('data-role="copy-all-link"', $html);
// 新增本批次可同步重试BAS
$this->assertStringContainsString('data-role="copy-retry-syncable-link"', $html);
}
}