About
integration test are test that runs between different services of a system.
Articles Related
Example
Website
If you are building a website, the test script will
- start your website
- and use a headless browser
- to test automatically all the functionalities
Rest API
If you are building a Rest API, the test script will
- start the web server
- use a web client
- and run the unit tests
Data Pipeline
If you are building a data pipeline, the test will
- start a database via docker
- run a test pipeline
- to test automatically all the functionalities