diff --git a/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksNoteShouldKeepAllSemanticsTest.php b/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksNoteShouldKeepAllSemanticsTest.php new file mode 100644 index 0000000..4747e93 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksNoteShouldKeepAllSemanticsTest.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_note_should_keep_all_semantics(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/data-role="po-tools-grid-jump-links-note"[^>]*aria-label="平台订单工具区快速导航说明"[^>]*title="快速导航仅负责定位工具组,不会直接执行批量动作"/u', $html); + } +}