80/ 100 · B
Popular and well-maintained. A little polish away from elite status.
🐐 Simple and complete React DOM testing utilities that encourage good testing practices.
JavaScript19,604 starsMITupdated 2mo ago
DocumentationREADME, setup, examples, license
EngineeringTests, CI, linting, lockfiles
Project healthDescription, activity, stars, deps
What to fix first
The highest-impact improvements for this repo.
- 1CI/CDEngineeringWarning
Add a step like `run: npm test`, `run: pytest`, or `run: tox` to your workflow file.
- 2CI/CDEngineeringInfo
Add a lint step (e.g. `npm run lint`, `ruff check .`, `cargo clippy`) to catch style issues automatically.
- 3CI/CDEngineeringInfo
Add `tsc --noEmit`, `mypy`, or `cargo check` to catch type errors before they merge.
Detailed breakdown
Documentation
82- README70
- README is present.
- README is well structured with multiple sections.
- No screenshots or images in the README (−20 pts).Add a GIF, screenshot, or logo image. It is the fastest way to show what your project does.
- README has code examples.
- README links to a live demo or deployed app.
- No status badges in the README (−10 pts).Add CI/build status badges from shields.io or your CI provider to signal project health.
- Install and run instructions90
- README documents how to install the project.
- README documents how to run the project.
- If your project uses environment variables, add a .env.example listing them (+10 pts).Add a .env.example listing all required environment variables so contributors know what to set up.
- License100
- Licensed under MIT.
- Contributing guide77
- Contributing guide is present (+6 pts for length); 400+ words earns the full +12 pts.
- Contributing guide lacks a setup section (−12 pts).Show new contributors how to get a local dev environment running.
- Contributing guide lacks a code style section (−8 pts).Describe your linting/formatting rules and how to run them (e.g. npm run lint, ruff check .).
- Contributing guide explains how to run tests.
- Contributing guide describes the PR/review workflow.
- Contributing guide includes code examples.
- Code of conduct present.
Engineering
74- Tests100
- Test files detected (jest.config.js).
- CI/CD57
Not applicable?
- CI is configured (.github/workflows/validate.yml).
- The CI workflow does not appear to run any tests (−28 pts).Add a step like `run: npm test`, `run: pytest`, or `run: tox` to your workflow file.
- CI runs on pull requests, not just on pushes to main.
- CI does not appear to run a linter (−15 pts).Add a lint step (e.g. `npm run lint`, `ruff check .`, `cargo clippy`) to catch style issues automatically.
- Optional: add type checking to CI.Add `tsc --noEmit`, `mypy`, or `cargo check` to catch type errors before they merge.
- CI reports or uploads test coverage.
- CI tests across multiple environments or versions.
- CI includes a build step.
- Linting and formatting95
- Linter or formatter configured (.prettierrc.js).
- Lint script wired into package.json.
- tsconfig.json has `strict: true`. Full TypeScript type safety enabled.
- Reproducibility0
- No dependency lockfile found (−70 pts).Commit a lockfile (package-lock.json, poetry.lock, uv.lock, etc.) so installs produce the same result everywhere.
- No Dockerfile or runtime version pin found. Adding one earns +10 pts.Add a Dockerfile, .nvmrc, or .python-version to pin the runtime version and make the environment reproducible.
- No Dependabot config (adding it earns up to +20 pts).Add .github/dependabot.yml with at least one package-ecosystem entry so dependencies are updated automatically.
- Issue and PR templates90
- Issue or PR templates present.
- Optional: add a SECURITY.md.A SECURITY.md explains how to responsibly disclose vulnerabilities. Worth adding once the project has real users.
Project health
95- Dependency manifest100
- Dependency manifest found (package.json).
- package.json has a description field.
- package.json links back to the repository.
- Repository metadata100
- Repository has a description.
- Primary language detected: JavaScript.
- package.json metadata is complete (description, keywords, repository).
- Activity80
- Actively maintained (pushed within 3 months).
- 19,604 stars.
- Housekeeping100
- .gitignore present.
Repository files27 root entries
- .codesandbox
- .githubGood: CI is configured (.github/workflows/validate.yml).Good: Issue or PR templates present.
- other
- src
- tests
- types
- .all-contributorsrc
- .bundle.main.env
- .bundle.pure.env
- .gitattributes
- .gitignoreGood: .gitignore present.
- .huskyrc.js
- .npmrc
- .prettierignore
- .prettierrc.jsGood: Linter or formatter configured (.prettierrc.js).
- CHANGELOG.mdGood: Contributing guide is present (+6 pts for length); 400+ words earns the full +12 pts.Info: Contributing guide lacks a setup section (−12 pts).Fix: Show new contributors how to get a local dev environment running.Info: Contributing guide lacks a code style section (−8 pts).Fix: Describe your linting/formatting rules and how to run them (e.g. npm run lint, ruff check .).Good: Contributing guide explains how to run tests.Good: Contributing guide describes the PR/review workflow.Good: Contributing guide includes code examples.
- CODE_OF_CONDUCT.mdGood: Code of conduct present.
- codecov.yml
- CONTRIBUTING.md
- dont-cleanup-after-each.js
- jest.config.jsGood: Test files detected (jest.config.js).
- LICENSEGood: Licensed under MIT.
- package.jsonGood: Dependency manifest found (package.json).
- pure.d.ts
- pure.js
- README.mdGood: README is present.Good: README is well structured with multiple sections.Warning: No screenshots or images in the README (−20 pts).Fix: Add a GIF, screenshot, or logo image. It is the fastest way to show what your project does.Good: README has code examples.Good: README links to a live demo or deployed app.Info: No status badges in the README (−10 pts).Fix: Add CI/build status badges from shields.io or your CI provider to signal project health.Good: README documents how to install the project.Good: README documents how to run the project.
- tsconfig.json