Skip to content

Commit

Permalink
fix: export STANDARD_ACTING_HELPERS type
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent committed Jan 29, 2025
1 parent 0338133 commit ac26e6b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lib/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down Expand Up @@ -205,8 +212,6 @@ class Container {
}
}

Container.STANDARD_ACTING_HELPERS = ['Playwright', 'WebDriver', 'Puppeteer', 'Appium', 'TestCafe']

module.exports = Container

function createHelpers(config) {
Expand Down

0 comments on commit ac26e6b

Please sign in to comment.