File tree 2 files changed +31
-1
lines changed
2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ secrets.nix
23
23
build
24
24
composer.lock
25
25
coverage
26
- phpunit.xml
27
26
phpstan.neon
28
27
testbench.yaml
29
28
node_modules
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
5
+ beStrictAboutOutputDuringTests =" true"
6
+ bootstrap =" vendor/autoload.php"
7
+ colors =" true"
8
+ failOnRisky =" true"
9
+ >
10
+ <testsuites >
11
+ <testsuite name =" Tests" >
12
+ <directory suffix =" Test.php" >./tests</directory >
13
+ </testsuite >
14
+ </testsuites >
15
+ <php >
16
+ <env name =" DB_CONNECTION" value =" testing" />
17
+ <env name =" APP_KEY" value =" base64:2fl+Ktvkfl+Fuz3Qp/A76G2RTiGVA/ZjKZaz6fiiM10=" />
18
+ <env name =" APP_ENV" value =" testing" />
19
+ <env name =" BCRYPT_ROUNDS" value =" 10" />
20
+ <env name =" CACHE_DRIVER" value =" array" />
21
+ <env name =" MAIL_MAILER" value =" array" />
22
+ <env name =" QUEUE_CONNECTION" value =" sync" />
23
+ <env name =" SESSION_DRIVER" value =" array" />
24
+ <env name =" TELESCOPE_ENABLED" value =" false" />
25
+ </php >
26
+ <source >
27
+ <include >
28
+ <directory suffix =" .php" >./src</directory >
29
+ </include >
30
+ </source >
31
+ </phpunit >
You can’t perform that action at this time.
0 commit comments