Skip to main content

Testing

Testing

Testing is an integral part of maintaining the quality of the application. Here's how you can run tests:

Unit and Integration Tests

Run the following command to execute all unit and integration tests using Go's built-in testing tools:

go test ./...

This command will run all tests specified in the test directory.

Test Configuration

Ensure that your testing environment is properly configured in the jest.config.js file, including any necessary environment variables and setup files.