-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
42 lines (42 loc) · 1.9 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
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false"
colors="true" processIsolation="false" stopOnFailure="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
<coverage/>
<testsuites>
<testsuite name="api">
<directory suffix="Test.php">tests/api/Feature</directory>
<directory suffix="Test.php">tests/api/Unit</directory>
</testsuite>
<testsuite name="newsletter">
<directory suffix="Test.php">tests/newsletter/Feature</directory>
<directory suffix="Test.php">tests/newsletter/Drivers</directory>
</testsuite>
<testsuite name="product-notifications">
<directory suffix="Test.php">tests/product-notifications/Feature</directory>
</testsuite>
<testsuite name="product-views">
<directory suffix="Test.php">tests/product-views/Feature</directory>
<directory suffix="Test.php">tests/product-views/Unit</directory>
</testsuite>
<testsuite name="reviews">
<directory suffix="Test.php">tests/reviews/Feature</directory>
<directory suffix="Test.php">tests/reviews/Unit</directory>
</testsuite>
<testsuite name="stripe">
<directory suffix="Test.php">tests/stripe/Feature</directory>
</testsuite>
</testsuites>
<php>
<env name="DB_CONNECTION" value="testing"/>
<env name="APP_KEY" value="base64:Z58QTqWN3pK9a3egYh6Cabf3mZthvNZshBRFN/hth84="/>
<env name="APP_ENV" value="testing"/>
<env name="MAIL_MAILER" value="log"/>
</php>
<source>
<include>
<directory suffix=".php">./packages/**/src</directory>
</include>
</source>
</phpunit>