补强页内导航筛选入口提示文案

This commit is contained in:
萝卜
2026-03-19 14:16:57 +08:00
parent 0dace50ed3
commit fe300864dc
2 changed files with 34 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpFiltersShouldHaveTitleTest 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_filters_should_have_title(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-page-jump-filters"', $html);
$this->assertStringContainsString('title="回到筛选区调整范围"', $html);
}
}