From 2b025f674211879abba64cea69c11e139335b08a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20L=C3=A9ger?= Date: Mon, 9 Nov 2015 15:52:52 -0500 Subject: [PATCH] chore(docs): Add example command to run more than one suite of tests --- docs/page-objects.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/page-objects.md b/docs/page-objects.md index c1c5d8fee..4524b97a8 100644 --- a/docs/page-objects.md +++ b/docs/page-objects.md @@ -90,3 +90,7 @@ exports.config = { From the command line, you can then easily switch between running one or the other suite of tests. This command will run only the homepage section of the tests: protractor protractor.conf.js --suite homepage + +Additionaly, you can run specific suites of tests with the command: + + protractor protractor.conf.js --suite homepage,search