补充页内导航回快捷筛选入口

This commit is contained in:
萝卜
2026-03-19 12:50:46 +08:00
parent 13d836fe57
commit 54293147d7
2 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpNoteShouldLinkBackToQuickFiltersTest 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_page_jump_note_should_link_back_to_quick_filters(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-page-jump-back-to-quick-filters"', $html);
$this->assertStringContainsString('href="#po-quick-filters"', $html);
$this->assertStringContainsString('aria-label="回到快捷筛选"', $html);
$this->assertStringContainsString('回到快捷筛选', $html);
}
}