Skip to content

Testing

Michael Marras edited this page Jun 8, 2026 · 1 revision

Local dev loop

First time setup — run npm install inside each worker directory before running any commands:

cd workers/ingest && npm install
cd workers/api && npm install

Then from within each worker directory:

npm test
npm run lint
  1. Make your changes
  2. Run npm test to confirm tests pass
  3. Run npm run lint to catch any lint errors
  4. Run ./scripts/smoke.sh for end-to-end checks against a live worker

Clone this wiki locally