From 5981873857886b4a1a443b697acc35b5bdc09bb9 Mon Sep 17 00:00:00 2001 From: NightHawk14 Date: Thu, 21 Jul 2016 15:56:15 +1000 Subject: [PATCH] docs(helpers): add afterSuite and beforeSuite hook to documentation helper --- docs/helpers.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/helpers.md b/docs/helpers.md index 4c3df8744..e6d552339 100644 --- a/docs/helpers.md +++ b/docs/helpers.md @@ -149,6 +149,8 @@ Implement corresponding methods to them. * `_before` - before a test * `_beforeStep` - before each step * `_afterStep` - after each step +* `_beforeSuite` - before each suite (Protractor and SeleniumWebdriver only) +* `_afterSuite` - after each suite (Protractor and SeleniumWebdriver only) Each implemented method should return a value as they will be added to global promise chain as well.