导出
批量同步
批量BMPA
diff --git a/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksShouldHaveAriaLabelTest.php b/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksShouldHaveAriaLabelTest.php
new file mode 100644
index 0000000..ab5d701
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksShouldHaveAriaLabelTest.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_should_have_aria_label(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $res = $this->get('/admin/platform-orders');
+ $res->assertOk();
+
+ $html = (string) $res->getContent();
+ $this->assertStringContainsString('data-role="po-tools-grid-jump-links" aria-label="平台订单工具区快速定位导航"', $html);
+ }
+}