Junior — Middle
Millal toimusid teie eelmisel projektil viimased testid?
sobes.tech AI
Vastus AI-lt
In my last Go project, automated tests were run automatically on each commit to the development branch using a CI/CD pipeline. The last test run was just before releasing a new version, i.e., a few hours before deployment. The standard command go test ./... was used to run the tests, which checks all project packages.
Example of running tests:
go test ./... -v
This ensures that all unit tests pass successfully and the code is stable.