Files
saasshop/tests/Feature/AdminPlatformOrderIndexPageJumpNoteShouldLinkBackToSummaryTest.php
2026-03-19 13:23:01 +08:00

36 lines
1.1 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpNoteShouldLinkBackToSummaryTest 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_summary(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-page-jump-back-to-summary"', $html);
$this->assertStringContainsString('href="#po-summary-cards"', $html);
$this->assertStringContainsString('aria-label="回到摘要概览"', $html);
$this->assertStringContainsString('回到摘要概览', $html);
}
}