From 0f84eea12fc70f34742c2bfb3abadb876880af50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 08:46:51 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=BC=BA=E5=B7=A5=E5=85=B7=E5=8C=BA?= =?UTF-8?q?=E5=9B=9E=E7=AD=9B=E9=80=89=E5=85=A5=E5=8F=A3=E5=BD=92=E5=B1=9E?= =?UTF-8?q?=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...sBackToFiltersShouldStayInsideNoteTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksBackToFiltersShouldStayInsideNoteTest.php diff --git a/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksBackToFiltersShouldStayInsideNoteTest.php b/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksBackToFiltersShouldStayInsideNoteTest.php new file mode 100644 index 0000000..feb108f --- /dev/null +++ b/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksBackToFiltersShouldStayInsideNoteTest.php @@ -0,0 +1,32 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_orders_tool_grid_jump_links_back_to_filters_should_stay_inside_note(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/data-role="po-tools-grid-jump-links-note"[\s\S]*?data-role="po-tools-grid-jump-links-go-filters"[\s\S]*?回到筛选条件/u', $html); + } +}