Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Commit 1b1aeb8

Browse files
committed
Update phpunit config file
1 parent a41ec96 commit 1b1aeb8

File tree

2 files changed

+28
-27
lines changed

2 files changed

+28
-27
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/vendor/
22
*cache
33
routes.js
4+
*.bak

phpunit.xml.dist

+27-27
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
beStrictAboutTestsThatDoNotTestAnything="false"
5-
bootstrap="vendor/autoload.php"
6-
colors="true"
7-
convertErrorsToExceptions="true"
8-
convertNoticesToExceptions="true"
9-
convertWarningsToExceptions="true"
10-
processIsolation="false"
11-
stopOnFailure="false"
12-
verbose="true">
13-
14-
<testsuites>
15-
<testsuite name="Laravel JS Routes Test Suite">
16-
<directory suffix="Test.php">./tests/</directory>
17-
</testsuite>
18-
</testsuites>
19-
<filter>
20-
<whitelist processUncoveredFilesFromWhitelist="true">
21-
<directory suffix=".php">./src/</directory>
22-
</whitelist>
23-
</filter>
24-
25-
<php>
26-
<server name="APP_ENV" value="testing"/>
27-
<server name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
28-
</php>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
backupGlobals="false"
4+
backupStaticAttributes="false"
5+
beStrictAboutTestsThatDoNotTestAnything="false"
6+
bootstrap="vendor/autoload.php"
7+
colors="true"
8+
convertErrorsToExceptions="true"
9+
convertNoticesToExceptions="true"
10+
convertWarningsToExceptions="true"
11+
processIsolation="false"
12+
stopOnFailure="false"
13+
verbose="true"
14+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
15+
<coverage processUncoveredFiles="true">
16+
<include>
17+
<directory suffix=".php">./src/</directory>
18+
</include>
19+
</coverage>
20+
<testsuites>
21+
<testsuite name="Laravel JS Routes Test Suite">
22+
<directory suffix="Test.php">./tests/</directory>
23+
</testsuite>
24+
</testsuites>
25+
<php>
26+
<server name="APP_ENV" value="testing"/>
27+
<server name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/>
28+
</php>
2929
</phpunit>

0 commit comments

Comments
 (0)