Use when asked to review a MR/PR on GitHub or GitLab. Checks for XSS vulnerabilities, validates ARIA attributes and WCAG compliance, identifies render-blocking issues and race conditions, enforces semantic HTML. Produces actionable feedback.
93
93%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
Reference standards for test review. Only enforce rules that match the target project's conventions.
it or test per variation. [Suggestion]__tests__/ directory next to the code they cover. [Suggestion]component.js → component.test.js). [Suggestion]jest.mock('...') / vi.mock('...')). [Suggestion]setup() for functions, getInstance() for classes, render() for UI). [Suggestion]beforeEach / afterEach for setup and cleanup. [Suggestion]describe per module or inconsistent nesting per function/method. [Minor]it / test not describing expected behavior. [Suggestion]with ... or if ... in test name. [Minor].not (mutation testing escape). [Suggestion]