원클릭으로
accessibility-test
Run accessibility tests to ensure the ResumeAI application is accessible to all users.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run accessibility tests to ensure the ResumeAI application is accessible to all users.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Analyze test coverage reports to identify areas needing more tests.
Run linters, formatters, and type checkers for both frontend and backend code.
Inspect and query the SQLite database used by the ResumeAI application.
Build and run Docker containers for the ResumeAI application.
Detect unused npm dependencies in the ResumeAI frontend project.
Manage git branches, commits, and pull requests for ResumeAI development workflow.
| name | accessibility-test |
| description | Run accessibility tests to ensure the ResumeAI application is accessible to all users. |
This skill runs accessibility tests to ensure the ResumeAI application meets WCAG guidelines and is accessible to all users.
npm run test:a11y
# Run all a11y tests
npm test -- --run
# Or specifically for a11y
npm run test
# Run all E2E tests with accessibility checks
npm run test:e2e
# Run with UI
npm run test:e2e:ui
# Run specific test
npx playwright test tests/e2e/accessibility.spec.ts
The project uses:
tests/ directorytests/e2e/ directory// Before
<button>Icon</button>
// After
<button aria-label="Close dialog">
<CloseIcon />
</button>
/* Ensure focus is visible */
button:focus-visible {
outline: 2px solid #0066cc;
outline-offset: 2px;
}
// Before
<input type="email" />
// After
<label>
Email
<input type="email" />
</label>
# Test specific component
vitest tests/components/Button.test.tsx --run
# Test specific E2E
npx playwright test tests/e2e/login.spec.ts
The project follows: