补强工具区导航双回跳护栏

This commit is contained in:
萝卜
2026-03-19 10:37:48 +08:00
parent b7cb4aa910
commit e5241f97ba

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexToolGridJumpLinksNoteShouldKeepBothBackLinksTest 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_orders_tool_grid_jump_links_note_should_keep_both_back_links(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/data-role="po-tools-grid-jump-links-note"[\s\S]*?po-tools-grid-jump-links-go-filters[\s\S]*?回到筛选条件[\s\S]*?po-tools-grid-jump-links-go-summary[\s\S]*?回到摘要概览/u', $html);
}
}