2018-08-20 14:13:54 -04:00
|
|
|
# Smoke Tests
|
|
|
|
|
2018-09-04 13:20:30 -04:00
|
|
|
It is imperative in any testing suite that we have Smoke Tests. In short, smoke
|
|
|
|
tests will run quick sanity end-to-end functional tests from GitLab QA and are
|
|
|
|
designed to run against the specified environment to ensure that basic
|
|
|
|
functionality is working.
|
2018-08-20 14:13:54 -04:00
|
|
|
|
|
|
|
Currently, our suite consists of this basic functionality coverage:
|
|
|
|
|
2019-03-25 07:27:03 -04:00
|
|
|
- User standard authentication
|
|
|
|
- SSH Key creation and addition to a user
|
|
|
|
- Project simple creation
|
|
|
|
- Project creation with Auto-DevOps enabled
|
|
|
|
- Issue creation
|
|
|
|
- Merge Request creation
|
|
|
|
- Snippet creation
|
2018-08-20 14:13:54 -04:00
|
|
|
|
2018-09-04 13:20:30 -04:00
|
|
|
Smoke tests have the `:smoke` RSpec metadata.
|
|
|
|
|
2019-03-25 07:27:03 -04:00
|
|
|
See [End-to-end Testing](./end_to_end_tests.md) for more details about
|
|
|
|
end-to-end tests.
|
|
|
|
|
2018-08-20 14:13:54 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
[Return to Testing documentation](index.md)
|