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

34 lines
966 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderSummaryJumpLinksShouldHaveUsageNoteTest 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_order_summary_jump_links_should_have_usage_note(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-summary-jump-links-note"', $html);
$this->assertStringContainsString('摘要导航只负责定位到关键摘要卡,不会触发治理动作。', $html);
}
}