From fc2c39c5f887cce5ca1ec0d6c5be60cc21db8e22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 15:31:10 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=BC=BA=E5=B7=A5=E5=85=B7=E5=8C=BA?= =?UTF-8?q?=E8=AF=B4=E6=98=8E=E5=9B=9E=E5=AF=BC=E8=88=AA=E9=A1=BA=E5=BA=8F?= =?UTF-8?q?=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...eJumpsShouldAppearAtEndOfIntroTextTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderIndexToolGridIntroLinkToPageJumpsShouldAppearAtEndOfIntroTextTest.php diff --git a/tests/Feature/AdminPlatformOrderIndexToolGridIntroLinkToPageJumpsShouldAppearAtEndOfIntroTextTest.php b/tests/Feature/AdminPlatformOrderIndexToolGridIntroLinkToPageJumpsShouldAppearAtEndOfIntroTextTest.php new file mode 100644 index 0000000..4b052bb --- /dev/null +++ b/tests/Feature/AdminPlatformOrderIndexToolGridIntroLinkToPageJumpsShouldAppearAtEndOfIntroTextTest.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_intro_link_to_page_jumps_should_appear_at_end_of_intro_text(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/po-tools-grid-intro[\s\S]*?请先缩小筛选范围再执行动作;也可使用上方[\s\S]*?po-tools-grid-intro-go-page-jumps[\s\S]*?快速定位导航/u', $html); + } +}