From 8de2a97ee51c5eb5acadc50411c1f3bd868c7e35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 19:15:10 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=BC=BA=E6=91=98=E8=A6=81=E5=8C=BA?= =?UTF-8?q?=E5=AF=BC=E8=88=AA=E5=BD=92=E5=B1=9E=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...houldStayInsideSummaryNavContainerTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderSummaryJumpLinksShouldStayInsideSummaryNavContainerTest.php diff --git a/tests/Feature/AdminPlatformOrderSummaryJumpLinksShouldStayInsideSummaryNavContainerTest.php b/tests/Feature/AdminPlatformOrderSummaryJumpLinksShouldStayInsideSummaryNavContainerTest.php new file mode 100644 index 0000000..54a000d --- /dev/null +++ b/tests/Feature/AdminPlatformOrderSummaryJumpLinksShouldStayInsideSummaryNavContainerTest.php @@ -0,0 +1,32 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_order_summary_jump_links_should_stay_inside_summary_nav_container(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/data-role="po-summary-jump-links"[\s\S]*?po-summary-jump-paid-no-receipt[\s\S]*?po-summary-jump-reconcile-mismatch[\s\S]*?po-summary-jump-syncable[\s\S]*?po-summary-jump-renewal-missing-sub/u', $html); + } +}