File tree Expand file tree Collapse file tree 4 files changed +28
-1
lines changed
Expand file tree Collapse file tree 4 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 2929 run : composer update
3030
3131 - name : Execute tests
32- run : vendor/bin/pest
32+ run : composer test
Original file line number Diff line number Diff line change 11/.idea
22/.vscode
33
4+ /.phpunit.cache
5+
46/vendor
57
68.env
Original file line number Diff line number Diff line change 7070 },
7171 "extra" : {
7272 "bin-dir" : " bin"
73+ },
74+ "scripts" : {
75+ "test" : [
76+ " @php vendor/bin/pest --compact"
77+ ]
7378 }
7479}
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
4+ bootstrap =" vendor/autoload.php"
5+ cacheDirectory =" .phpunit.cache"
6+ executionOrder =" depends,defects"
7+ failOnRisky =" true"
8+ >
9+ <testsuites >
10+ <testsuite name =" default" >
11+ <directory >tests</directory >
12+ </testsuite >
13+ </testsuites >
14+
15+ <source restrictDeprecations =" true" restrictNotices =" true" restrictWarnings =" true" >
16+ <include >
17+ <directory >app</directory >
18+ </include >
19+ </source >
20+ </phpunit >
You can’t perform that action at this time.
0 commit comments