source: phpunit.xml

main
Last change on this file was c454c0f, checked in by bube-ristovska <ristovska725@…>, 11 months ago

First commit

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[c454c0f]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 colors="true"
6>
7 <testsuites>
8 <testsuite name="Unit">
9 <directory>tests/Unit</directory>
10 </testsuite>
11 <testsuite name="Feature">
12 <directory>tests/Feature</directory>
13 </testsuite>
14 </testsuites>
15 <source>
16 <include>
17 <directory>app</directory>
18 </include>
19 </source>
20 <php>
21 <env name="APP_ENV" value="testing"/>
22 <env name="BCRYPT_ROUNDS" value="4"/>
23 <env name="CACHE_DRIVER" value="array"/>
24 <!-- <env name="DB_CONNECTION" value="sqlite"/> -->
25 <!-- <env name="DB_DATABASE" value=":memory:"/> -->
26 <env name="MAIL_MAILER" value="array"/>
27 <env name="PULSE_ENABLED" value="false"/>
28 <env name="QUEUE_CONNECTION" value="sync"/>
29 <env name="SESSION_DRIVER" value="array"/>
30 <env name="TELESCOPE_ENABLED" value="false"/>
31 </php>
32</phpunit>
Note: See TracBrowser for help on using the repository browser.