补强回执筛选说明容器归属护栏

This commit is contained in:
萝卜
2026-03-19 04:17:19 +08:00
parent 5bcb13b41e
commit aeb0e26976

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderFiltersReceiptStatusHintLinkShouldStayInsideHintBlockTest 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_receipt_status_hint_link_should_stay_inside_hint_block(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/data-role="po-receipt-status-broad-none-hint"[\s\S]*?data-role="po-receipt-status-broad-none-go-paid-no-receipt"/u', $html);
}
}