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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2015-09-14 09:33:17 +0300
committermattab <matthieu.aubry@gmail.com>2015-09-14 09:33:17 +0300
commit16b6a37cad01d4dfef77bca87a868bd90990450d (patch)
tree2ad97a35f5fc4b00db0d363abe2e475ed5015c94 /plugins/TestRunner
parent1cf10b2e4f7093457a8871ed13bedf631e4ab4eb (diff)
Set help message, how to run only one UI test spec file
Diffstat (limited to 'plugins/TestRunner')
-rw-r--r--plugins/TestRunner/Commands/TestsRunUI.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/TestRunner/Commands/TestsRunUI.php b/plugins/TestRunner/Commands/TestsRunUI.php
index ea2cf6f305..faf436a8af 100644
--- a/plugins/TestRunner/Commands/TestsRunUI.php
+++ b/plugins/TestRunner/Commands/TestsRunUI.php
@@ -22,6 +22,10 @@ class TestsRunUI extends ConsoleCommand
{
$this->setName('tests:run-ui');
$this->setDescription('Run screenshot tests');
+ $this->setHelp("Example Commands
+ \nRun one spec:
+ \n./console tests:run-ui UIIntegrationTest
+ ");
$this->addArgument('specs', InputArgument::OPTIONAL | InputArgument::IS_ARRAY, 'Run only a specific test spec. Separate multiple specs by comma, for instance core,integration', array());
$this->addOption("persist-fixture-data", null, InputOption::VALUE_NONE, "Persist test data in a database and do not execute tear down.");
$this->addOption('keep-symlinks', null, InputOption::VALUE_NONE, "Keep recursive directory symlinks so test pages can be viewed in a browser.");