Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.02 KB

File metadata and controls

28 lines (20 loc) · 1.02 KB

Repository Guidelines

Reassure is a performance testing toolkit for React and React Native, structured as a Yarn 4/Turbo monorepo.

Use Yarn, not npm.

Key commands

  • yarn validate — lint + typecheck + tests (run before handing off any change)
  • yarn build — build all packages
  • yarn test — run package Jest suites
  • yarn test:test-app — run the native test app Jest suite
  • yarn typecheck — TypeScript checks only
  • cd test-apps/native && yarn reassure — run performance benchmarks

Agent scope rules

  • Edit only src/, tests, and docusaurus/. Never modify generated lib/ unless doing a release task.
  • When behavior changes, update source, tests, and docs together.
  • Preserve existing package patterns; keep edits scoped to the relevant package.

Further reading