debian-mirror-gitlab/doc/development/testing_guide/smoke.md

20 lines
528 B
Markdown
Raw Normal View History

2018-11-20 20:47:30 +05:30
# Smoke Tests
2019-02-15 15:39:39 +05:30
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-11-20 20:47:30 +05:30
Currently, our suite consists of this basic functionality coverage:
- User Login (Standard Auth)
- Project Creation
- Issue Creation
- Merge Request Creation
2019-02-15 15:39:39 +05:30
Smoke tests have the `:smoke` RSpec metadata.
2018-11-20 20:47:30 +05:30
---
[Return to Testing documentation](index.md)