快速定位:
摘要概览
diff --git a/tests/Feature/AdminPlatformOrderIndexToolGridIntroShouldLinkToPageJumpsTest.php b/tests/Feature/AdminPlatformOrderIndexToolGridIntroShouldLinkToPageJumpsTest.php
new file mode 100644
index 0000000..99b8d09
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexToolGridIntroShouldLinkToPageJumpsTest.php
@@ -0,0 +1,35 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_platform_orders_tool_grid_intro_should_link_to_page_jumps(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $html = (string) $res->getContent();
+ $this->assertStringContainsString('data-role="po-tools-grid-intro-go-page-jumps"', $html);
+ $this->assertStringContainsString('href="#po-page-jump-links"', $html);
+ $this->assertStringContainsString('aria-label="回到页内导航"', $html);
+ $this->assertStringContainsString('title="回到页内导航查看各区块跳转入口"', $html);
+ }
+}