Skip to content

Commit 6d11082

Browse files
committed
#54: Set a global value for timeouts that's used across all wait related actions
- Added WAIT_TIMEOUT environment variable to .env file
1 parent 33e95b6 commit 6d11082

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.env

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#Copyright © Magento, Inc. All rights reserved.
2+
#See COPYING.txt for license details.
3+
4+
#*** Set the base URL for your Magento instance ***#
5+
MAGENTO_BASE_URL=http://devdocs.magento.com/
6+
7+
#*** Set the Admin Username and Password for your Magento instance ***#
8+
MAGENTO_BACKEND_NAME=
9+
MAGENTO_ADMIN_USERNAME=
10+
MAGENTO_ADMIN_PASSWORD=
11+
12+
#*** Path to CLI entry point and command parameter name. Uncomment and change if folder structure differs from standard Magento installation
13+
#MAGENTO_CLI_COMMAND_PATH=dev/tests/acceptance/utils/command.php
14+
#MAGENTO_CLI_COMMAND_PARAMETER=command
15+
16+
#*** Selenium Server Protocol, Host, Port, and Path, with local defaults. Uncomment and change if not running Selenium locally.
17+
#SELENIUM_HOST=127.0.0.1
18+
#SELENIUM_PORT=4444
19+
#SELENIUM_PROTOCOL=http
20+
#SELENIUM_PATH=/wd/hub
21+
22+
#*** Uncomment and set host & port if your dev environment needs different value other than MAGENTO_BASE_URL for Rest API Requests ***#
23+
#MAGENTO_RESTAPI_SERVER_HOST=
24+
#MAGENTO_RESTAPI_SERVER_PORT=
25+
26+
#*** Uncomment these properties to set up a dev environment with symlinked projects ***#
27+
#TESTS_BP=
28+
#FW_BP=
29+
#TESTS_MODULE_PATH=
30+
31+
#*** These properties impact the modules loaded into MFTF, you can point to your own full path, or a custom set of modules located with the core set
32+
MODULE_WHITELIST=Magento_Framework,Magento_ConfigurableProductWishlist,Magento_ConfigurableProductCatalogSearch
33+
#CUSTOM_MODULE_PATHS=
34+
35+
#*** Bool property which allows the user to toggle debug output during test execution
36+
#MFTF_DEBUG=
37+
38+
#*** Default timeout for wait actions
39+
WAIT_TIMEOUT=20
40+
#*** End of .env ***#

0 commit comments

Comments
 (0)