From 50f73d2222b77412b4a312d93d4a7b53f6609625 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Fri, 20 Mar 2026 02:31:20 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=BC=BA=E6=91=98=E8=A6=81=E5=AF=BC?= =?UTF-8?q?=E8=88=AA=E8=AF=B4=E6=98=8E=E7=BB=84=E5=90=88=E8=AF=AD=E4=B9=89?= =?UTF-8?q?=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...maryJumpNoteShouldKeepAllSemanticsTest.php | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepAllSemanticsTest.php 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); + } +}