导出
批量同步
diff --git a/tests/Feature/AdminPlatformOrderIndexToolGridIntroShouldMentionJumpLinksTest.php b/tests/Feature/AdminPlatformOrderIndexToolGridIntroShouldMentionJumpLinksTest.php
new file mode 100644
index 0000000..6f7c945
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexToolGridIntroShouldMentionJumpLinksTest.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_should_mention_jump_links(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $html = (string) $res->getContent();
+ $this->assertStringContainsString('也可使用上方快速定位导航直达目标工具组。', $html);
+ }
+}