Last active
May 28, 2020 07:03
-
-
Save aliuosio/06620432cd89d3b9e80817ba0c68238f to your computer and use it in GitHub Desktop.
Magento 2 Integration Test DB Connect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
'db-host' => '172.21.0.1', | |
'db-user' => 'root', | |
'db-password' => 'root', | |
'db-name' => 'magento_integration_tests', | |
'db-prefix' => '', | |
'backend-frontname' => 'backend', | |
'admin-user' => \Magento\TestFramework\Bootstrap::ADMIN_NAME, | |
'admin-password' => \Magento\TestFramework\Bootstrap::ADMIN_PASSWORD, | |
'admin-email' => \Magento\TestFramework\Bootstrap::ADMIN_EMAIL, | |
'admin-firstname' => \Magento\TestFramework\Bootstrap::ADMIN_FIRSTNAME, | |
'admin-lastname' => \Magento\TestFramework\Bootstrap::ADMIN_LASTNAME, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment