-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml
34 lines (34 loc) · 1.46 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" bootstrap="vendor/autoload.php"
colors="true" cacheResult="false" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="Feature">
<directory>./tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./app/ImageFilters</directory>
<directory>./app/Jobs</directory>
<directory>./app/Telegram</directory>
</include>
<exclude>
<file>./app/Telegram/Handlers/ExceptionsHandler.php</file>
</exclude>
</source>
<php>
<server name="APP_ENV" value="testing"/>
<server name="TELEGRAM_TOKEN" value="TEST"/>
<server name="BOT_CHANNEL" value="123456"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="MAIL_MAILER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
<server name="TELESCOPE_ENABLED" value="false"/>
<server name="DONATION_ENABLED" value="true"/>
<server name="DONATION_PROVIDER_TOKEN" value="123456789:TEST:AbCdEFGhIJK1LMn1"/>
<server name="DONATION_THIRD_PARTY_PROVIDERS_TEXT_BTC" value="12345678901234567890"/>
</php>
</phpunit>