From 1b4d0addf05b16d3776e597944fd7b7467c2bb27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 21:55:27 +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=E6=A0=87=E9=A2=98=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...rderSummaryJumpNoteShouldKeepTitleTest.php | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepTitleTest.php diff --git a/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepTitleTest.php b/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepTitleTest.php new file mode 100644 index 0000000..df55d63 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderSummaryJumpNoteShouldKeepTitleTest.php @@ -0,0 +1,33 @@ +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_title(): 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('title="摘要导航仅用于快速定位摘要卡,不会改变筛选状态"', $html); + } +}