diff --git a/tests/Feature/AdminPlatformOrderIndexPageJumpWorkspaceBackLinksShouldHaveAriaLabelTest.php b/tests/Feature/AdminPlatformOrderIndexPageJumpWorkspaceBackLinksShouldHaveAriaLabelTest.php new file mode 100644 index 0000000..a2ea382 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderIndexPageJumpWorkspaceBackLinksShouldHaveAriaLabelTest.php @@ -0,0 +1,34 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_orders_page_jump_workspace_back_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-page-jump-back-to-quick-filters" aria-label="回到快捷筛选"', $html); + $this->assertStringContainsString('data-role="po-page-jump-back-to-tools" aria-label="回到工具区"', $html); + $this->assertStringContainsString('data-role="po-page-jump-back-to-list" aria-label="回到订单列表"', $html); + } +}