统一页内导航回顶部提示语气

This commit is contained in:
萝卜
2026-03-19 17:31:08 +08:00
parent 58c2965c7d
commit a264ec5fc9
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 AdminPlatformOrderIndexPageJumpTopShouldMatchBackToTopTitleStyleTest 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_top_should_match_back_to_top_title_style(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-page-jump-top"', $html);
$this->assertStringContainsString('title="回到顶部查看页头概述"', $html);
}
}