diff --git a/lib/container.js b/lib/container.js index c44042eee..39f5b4ae4 100644 --- a/lib/container.js +++ b/lib/container.js @@ -34,6 +34,13 @@ let container = { * Dependency Injection Container */ class Container { + /** + * Get the standard acting helpers of CodeceptJS Container + * + */ + static get STANDARD_ACTING_HELPERS() { + return ['Playwright', 'WebDriver', 'Puppeteer', 'Appium', 'TestCafe'] + } /** * Create container with all required helpers and support objects * @@ -205,8 +212,6 @@ class Container { } } -Container.STANDARD_ACTING_HELPERS = ['Playwright', 'WebDriver', 'Puppeteer', 'Appium', 'TestCafe'] - module.exports = Container function createHelpers(config) {