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); } }