Make the email count dynamic based on the number
...of daily email nodes
This commit is contained in:
parent
6ba4b80645
commit
c48f8acd4a
9 changed files with 5666 additions and 5 deletions
37
phpunit.xml.dist
Normal file
37
phpunit.xml.dist
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
bootstrap="web/core/tests/bootstrap.php"
|
||||
colors="true"
|
||||
beStrictAboutTestsThatDoNotTestAnything="true"
|
||||
beStrictAboutOutputDuringTests="true"
|
||||
beStrictAboutChangesToGlobalState="true"
|
||||
failOnRisky="true"
|
||||
failOnWarning="true"
|
||||
displayDetailsOnTestsThatTriggerErrors="true"
|
||||
displayDetailsOnTestsThatTriggerWarnings="true"
|
||||
displayDetailsOnTestsThatTriggerDeprecations="true"
|
||||
cacheResult="false"
|
||||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
|
||||
cacheDirectory=".phpunit.cache">
|
||||
<php>
|
||||
<ini name="error_reporting" value="32767"/>
|
||||
<ini name="memory_limit" value="-1"/>
|
||||
<env name="SIMPLETEST_BASE_URL" value=""/>
|
||||
<env name="SIMPLETEST_DB" value="sqlite://localhost//dev/shm/testing.sqlite"/>
|
||||
<env name="BROWSERTEST_OUTPUT_BASE_URL" value=""/>
|
||||
<env name="MINK_DRIVER_CLASS" value=""/>
|
||||
<env name="MINK_DRIVER_ARGS" value=""/>
|
||||
<env name="MINK_DRIVER_ARGS_WEBDRIVER" value=""/>
|
||||
</php>
|
||||
<extensions>
|
||||
<bootstrap class="Drupal\TestTools\Extension\HtmlLogging\HtmlOutputLogger">
|
||||
<parameter name="outputDirectory" value="sites/simpletest/browser_output"/>
|
||||
<parameter name="verbose" value="true"/>
|
||||
</bootstrap>
|
||||
</extensions>
|
||||
<testsuites>
|
||||
<testsuite name="Module tests">
|
||||
<directory>modules/*</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
</phpunit>
|
Loading…
Add table
Add a link
Reference in a new issue