Let's test your knowledge. Fill in the missing part by typing it in.
Running integration tests in a CI/CD pipeline helps automate the testing process and ensures that the API is consistently tested and deployed. In a CI/CD pipeline, integration tests are executed ___, usually triggered by a code change.
Solution: automatically
Explanation: In a CI/CD pipeline, integration tests are executed automatically. When a code change is pushed to the repository, the CI/CD pipeline triggers the execution of the integration tests to check for any issues or errors.
Write the missing line below.