diff --git a/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepAllSemanticsTest.php b/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepAllSemanticsTest.php new file mode 100644 index 0000000..1168dfb --- /dev/null +++ b/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepAllSemanticsTest.php @@ -0,0 +1,35 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_order_summary_jump_note_should_keep_all_semantics(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertStringContainsString('data-role="po-summary-jump-note"', $html); + $this->assertStringContainsString('aria-label="平台订单摘要导航说明"', $html); + $this->assertStringContainsString('title="摘要导航仅用于快速定位摘要卡,不会改变筛选状态"', $html); + $this->assertStringContainsString('data-role="po-summary-jump-note-prefix" aria-label="平台订单摘要导航说明前缀"', $html); + } +}