ARCHITECTURE.md 396 B

Architecture

This is a minimal test project with a simple structure:

  • src/index.js — Core utilities (add, greet functions)
  • tests/index.test.js — Jest test suite

Adding features

When new tickets come in for this project, the Developer will:

  1. Add code to src/
  2. Add corresponding tests to tests/
  3. Run npm test to verify
  4. Update this doc if architecture changes