@@ -99,9 +99,9 @@ Leave all the settings that do not start with `db-` and `amqp-` at their default
99
99
You can include additional setup options—available to the ` setup:install ` command—in the test configuration file. A
100
100
complete list of options is available [ here] ({{ page.baseurl }}/install-gde/install/cli/install-cli.html).
101
101
102
- If your project requires custom entries in the ` core_config_data ` table (like the introduction of new 3rd party services
102
+ If your project requires custom entries in the ` core_config_data ` table, such as the introduction of new 3rd party services
103
103
that affect your application on a basic level or configuration for logic that would prevent access if not configured
104
- properly) , Magento provides a file template that you can use for this purpose.
104
+ properly, Magento provides a file template for this purpose.
105
105
106
106
Copy ` dev/tests/integration/etc/config-global.php.dist ` to ` dev/tests/integration/etc/config-global.php ` (without the
107
107
` .dist ` suffix) and add your path-value pairs there. Do not remove existing entries from the file as they are required
@@ -110,12 +110,6 @@ for the Integration Test Framework to run tests properly.
110
110
Example:
111
111
112
112
``` php
113
- <?php
114
- /**
115
- * Copyright © Magento, Inc. All rights reserved.
116
- * See COPYING.txt for license details.
117
- */
118
-
119
113
return [
120
114
'customer/password/limit_password_reset_requests_method' => 0,
121
115
'admin/security/admin_account_sharing' => 1,
@@ -124,8 +118,8 @@ return [
124
118
];
125
119
```
126
120
127
- Remember that the file above is only for config files required by all the integration tests. If you need to introduce
128
- new configuration values only for particular tests to perform their function, you should use the
121
+ Note that the file above is only for configuration files required by all integration tests. If you need to introduce
122
+ new configuration values for particular tests to perform their function, use the
129
123
[ @magentoConfigFixture ] ({{ page.baseurl }}/test/integration/annotations/magento-config-fixture.html) annotation instead.
130
124
131
125
{:.bs-callout-info}
0 commit comments