diff options
Diffstat (limited to 'qa')
-rw-r--r-- | qa/README.md | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/qa/README.md b/qa/README.md index 1cfbbdd9d42..7f2dd39ff63 100644 --- a/qa/README.md +++ b/qa/README.md @@ -33,7 +33,14 @@ You can also supply specific tests to run as another parameter. For example, to test the EE license specs, you can run: ``` -EE_LICENSE="<YOUR LICENSE KEY>" bin/qa Test::Instance http://localhost qa/ee +EE_LICENSE="<YOUR LICENSE KEY>" bin/qa Test::Instance http://localhost qa/specs/features/ee +``` + +Since the arguments would be passed to `rspec`, you could use all `rspec` +options there. For example, passing `--backtrace` and also line number: + +``` +bin/qa Test::Instance http://localhost qa/specs/features/login/standard_spec.rb:3 --backtrace ``` ### Overriding the authenticated user |