Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 562 Bytes

File metadata and controls

41 lines (26 loc) · 562 Bytes

Testing

Run these checks before submitting a pull request:

Lint

npm run lint

Runs ESLint across the codebase.

TypeScript Type Checking

npm run typecheck

Ensures all TypeScript types are correct.

Production Build

npm run build

Verifies the Next.js app builds without errors.

Contract Tests

npm run test:contracts

Runs Hardhat tests for the Solidity registry contract.

All Checks in One Command

npm run lint && npm run typecheck && npm run build && npm run test:contracts