Skip to content

Commit

Permalink
added container const
Browse files Browse the repository at this point in the history
  • Loading branch information
DavertMik committed Jan 28, 2025
1 parent 80a94dd commit 0338133
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ class Container {
}
}

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

module.exports = Container

function createHelpers(config) {
Expand Down
5 changes: 4 additions & 1 deletion lib/plugin/standardActingHelpers.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
const standardActingHelpers = ['Playwright', 'WebDriver', 'Puppeteer', 'Appium', 'TestCafe']
const Container = require('../container')
// due to using this in internal tooling we won't post deprecation warning
// but please switch to Container.STANDARD_ACTING_HELPERS
const standardActingHelpers = Container.STANDARD_ACTING_HELPERS

module.exports = standardActingHelpers

0 comments on commit 0338133

Please sign in to comment.