Ocelot-Social/testing.md
Robert Schäfer 216fc2b67c DRY + Better naming: Testing flavours and Github
cc @mattwr18

I would suggest that each subfolder like `/backend/`, `/webapp/`,
`/deployment/` and so on should have a file README.md. Thus, not only
gitbook will pick it up but also Github itself. Github is looking for a
file called README.md when iterating through subfolders.
2019-04-12 13:48:47 +02:00

21 lines
685 B
Markdown

# Testing Guide
## [End-to-End Testing](cypress/README.md)
To test all the pieces together, from the user perspective, we use integration tests. They also show if the the backend and the frontend are working as expected in conjunction and also if the browser likes our app.
[more...](cypress/README.md)
## [Component Testing](webapp/testing.md)
Individual Vue Components should also be documented and tested properly. This guarantees that they are reusable and the api gets more solid in the process.
[more...](webapp/testing.md)
## [Unit Testing](backend/testing.md)
Expecially the Backend relies on Unit Tests, as there are no Vue Components.
[more...](backend/testing.md)