Skip to content

Commit ac26e6b

Browse files
committed
fix: export STANDARD_ACTING_HELPERS type
1 parent 0338133 commit ac26e6b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

lib/container.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ let container = {
3434
* Dependency Injection Container
3535
*/
3636
class Container {
37+
/**
38+
* Get the standard acting helpers of CodeceptJS Container
39+
*
40+
*/
41+
static get STANDARD_ACTING_HELPERS() {
42+
return ['Playwright', 'WebDriver', 'Puppeteer', 'Appium', 'TestCafe']
43+
}
3744
/**
3845
* Create container with all required helpers and support objects
3946
*
@@ -205,8 +212,6 @@ class Container {
205212
}
206213
}
207214

208-
Container.STANDARD_ACTING_HELPERS = ['Playwright', 'WebDriver', 'Puppeteer', 'Appium', 'TestCafe']
209-
210215
module.exports = Container
211216

212217
function createHelpers(config) {

0 commit comments

Comments
 (0)