-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpunit.xml.dist
23 lines (23 loc) · 1.58 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="${drupal.root}/core/tests/bootstrap.php" backupGlobals="true" colors="true" cacheResult="false" >
<php>
<ini name="error_reporting" value="32767"/>
<ini name="memory_limit" value="-1"/>
<env name="SIMPLETEST_IGNORE_DIRECTORIES" value="${drupal.root}"/>
<env name="SIMPLETEST_BASE_URL" value="${drupal.base_url}"/>
<env name="SIMPLETEST_DB" value="mysql://${drupal.database.user}:${drupal.database.password}@${drupal.database.host}:${drupal.database.port}/${drupal.database.name}"/>
<!-- @todo When dropping support for 10.2.x, rename "chromeOptions" to "goog:chromeOptions". -->
<env name="MINK_DRIVER_ARGS_WEBDRIVER" value='["${selenium.browser}", {"browserName":"chrome","chromeOptions":{"w3c":false, "args":["--no-sandbox", "--start-maximized", "--disable-gpu", "--window-size=1440,900", "--disable-dev-shm-usage", "--disable-setuid-sandbox", "--disable-web-security", "--DNS-prefetch-disable", "--disable-translate", "--ignore-certificate-errors", "--test-type", "--disable-extensions", "--incognito", "--disable-infobars"]}}, "${selenium.host}:${selenium.port}/wd/hub"]'/>
</php>
<extensions>
<extension class="Drupal\Tests\oe_translation\EnsurePHPUnitBatchingTestExtension"/>
</extensions>
<testsuites>
<testsuite name="OpenEuropa Translation Tests">
<directory>./tests/</directory>
<directory>./modules/*/tests/</directory>
<directory>./modules/*/modules/*/tests</directory>
<directory>./modules/*/modules/*/modules/*/tests</directory>
</testsuite>
</testsuites>
</phpunit>