补强工具区导航前缀顺序护栏

This commit is contained in:
萝卜
2026-03-19 10:27:14 +08:00
parent 33cfd7f9c5
commit fc98efa65b

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexToolGridJumpLinksPrefixShouldAppearBeforeFirstActionTest 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_prefix_should_appear_before_first_action(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/data-role="po-tools-grid-jump-links"[\s\S]*?po-tools-grid-jump-links-prefix[\s\S]*?快速定位:[\s\S]*?po-tools-jump-summary/u', $html);
}
}