From d0d6fa0f346d92c9f36d32308be06e2ece55e113 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 08:10:48 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=BC=BA=E5=B7=A5=E5=85=B7=E5=8C=BA?= =?UTF-8?q?=E9=A1=B6=E5=B1=82=E5=AF=BC=E8=A7=88=E8=B5=B7=E5=A7=8B=E9=93=BE?= =?UTF-8?q?=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...dStartWithIntroJumpLinksThenExportTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderIndexToolGridShouldStartWithIntroJumpLinksThenExportTest.php diff --git a/tests/Feature/AdminPlatformOrderIndexToolGridShouldStartWithIntroJumpLinksThenExportTest.php b/tests/Feature/AdminPlatformOrderIndexToolGridShouldStartWithIntroJumpLinksThenExportTest.php new file mode 100644 index 0000000..052f142 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderIndexToolGridShouldStartWithIntroJumpLinksThenExportTest.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_should_start_with_intro_jump_links_then_export(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/data-role="po-tools-grid"[\s\S]*?data-role="po-tools-grid-intro"[\s\S]*?data-role="po-tools-grid-jump-links"[\s\S]*?data-role="po-tools-group-export"/u', $html); + } +}