Loading...
Loading...
Guidelines for writing effective tests in this project
npx skill4agent add block/agent-skills testing-strategytest_user_creation_fails_with_invalid_email# Run all tests
npm test
# Run unit tests only
npm test:unit
# Run integration tests (requires database)
npm test:integration
# Run tests with coverage
npm test:coveragetests/
├── unit/ # Fast, isolated unit tests
├── integration/ # Tests requiring external services
├── fixtures/ # Shared test data
└── helpers/ # Test utilities