Files
saasshop/tests/Feature/AdminPlatformOrderIndexPageJumpLinksShouldIncludeBackToTopShortcutTest.php
2026-03-19 14:08:59 +08:00

36 lines
1.0 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpLinksShouldIncludeBackToTopShortcutTest 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_links_should_include_back_to_top_shortcut(): 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('aria-label="回到页面顶部"', $html);
$this->assertStringContainsString('href="#po-page-top"', $html);
$this->assertStringContainsString('>回顶部<', $html);
}
}