Skip to main content

Test

This doc explains how to run tests locally. For information on writing tests, see the Contributing Guide.

Automated Testing

How to run tests locally

Use these commands from the root directory to run the unit and integration tests locally:

yarn test           # runs all tests

yarn test:web # runs web tests

yarn test:backend # runs backend tests

yarn test:core # runs core tests

Our Testing Strategy

Glossary:

  • Unit Tests: Verify individual functions and components
  • Integration Tests: Test interactions between components
  • E2E Tests: Simulate user interactions
  • Manual Tests: Test in development environment
Test TypeArea under testTool
Unit TestsCore logicJest
Unit TestsReact componentsJest + React Testing Library
Unit TestsReact hooksJest + React Testing Library (hooks)
Integration TestsAPIJest + In-memory MongoDB (@shelf/jest-mongodb)
Manual TestsAPIPostman
Manual TestsUIManual in browser
E2E Testsn/an/a

The GitHub repo is also configured to run tests automatically after every push

Manual Testing with Postman

I've created a Postman collection that I use to test the API.

However, I haven't cleaned it up for public use yet.

If this would be helpful, please let me know by creating a GitHub issue or upvoting the existing one.

Postman preview

Debug routes

These routes are exposed when in dev for debugging purposes. They are not available in production.

AreaRequest
Simulate Gcal notificationcurl -X POST http://localhost:3000/api/event-change-demo