Skip to content

Commit 0338133

Browse files
author
DavertMik
committed
added container const
1 parent 80a94dd commit 0338133

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

lib/container.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,8 @@ class Container {
205205
}
206206
}
207207

208+
Container.STANDARD_ACTING_HELPERS = ['Playwright', 'WebDriver', 'Puppeteer', 'Appium', 'TestCafe']
209+
208210
module.exports = Container
209211

210212
function createHelpers(config) {
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
const standardActingHelpers = ['Playwright', 'WebDriver', 'Puppeteer', 'Appium', 'TestCafe']
1+
const Container = require('../container')
2+
// due to using this in internal tooling we won't post deprecation warning
3+
// but please switch to Container.STANDARD_ACTING_HELPERS
4+
const standardActingHelpers = Container.STANDARD_ACTING_HELPERS
25

36
module.exports = standardActingHelpers

0 commit comments

Comments
 (0)