Skip to content

Instantly share code, notes, and snippets.

@aliuosio
Last active May 28, 2020 07:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aliuosio/06620432cd89d3b9e80817ba0c68238f to your computer and use it in GitHub Desktop.
Save aliuosio/06620432cd89d3b9e80817ba0c68238f to your computer and use it in GitHub Desktop.
Magento 2 Integration Test DB Connect
<?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