补强摘要区导航归属护栏

This commit is contained in:
萝卜
2026-03-19 19:15:10 +08:00
parent d8816869b3
commit 8de2a97ee5

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderSummaryJumpLinksShouldStayInsideSummaryNavContainerTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->seed();
$this->post('/admin/login', [
'email' => 'platform.admin@demo.local',
'password' => 'Platform@123456',
])->assertRedirect('/admin');
}
public function test_platform_order_summary_jump_links_should_stay_inside_summary_nav_container(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/data-role="po-summary-jump-links"[\s\S]*?po-summary-jump-paid-no-receipt[\s\S]*?po-summary-jump-reconcile-mismatch[\s\S]*?po-summary-jump-syncable[\s\S]*?po-summary-jump-renewal-missing-sub/u', $html);
}
}