Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/README.md')
-rw-r--r--qa/spec/README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/qa/spec/README.md b/qa/spec/README.md
index b1fc38fb55d..0831ef4f052 100644
--- a/qa/spec/README.md
+++ b/qa/spec/README.md
@@ -1,7 +1,13 @@
# QA framework unit tests
-To run framework unit tests, following command can be used:
+To run all the unit tests under the framework, following command can be used:
```shell
bundle exec rspec -O .rspec_internal
```
+
+To run individual unit test, following command can be used:
+
+```shell
+bundle exec rspec -O .rspec_internal spec/spec_path/file_spec.rb
+```