planiverse

A minimalist, no-JS front-end for Mastodon.
git clone https://git.stjo.hn/planiverse
Log | Files | Refs | README | LICENSE

phpunit.xml (1040B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <phpunit backupGlobals="false"
      3          backupStaticAttributes="false"
      4          bootstrap="vendor/autoload.php"
      5          colors="true"
      6          convertErrorsToExceptions="true"
      7          convertNoticesToExceptions="true"
      8          convertWarningsToExceptions="true"
      9          processIsolation="false"
     10          stopOnFailure="false">
     11     <testsuites>
     12         <testsuite name="Feature">
     13             <directory suffix="Test.php">./tests/Feature</directory>
     14         </testsuite>
     15 
     16         <testsuite name="Unit">
     17             <directory suffix="Test.php">./tests/Unit</directory>
     18         </testsuite>
     19     </testsuites>
     20     <filter>
     21         <whitelist processUncoveredFilesFromWhitelist="true">
     22             <directory suffix=".php">./app</directory>
     23         </whitelist>
     24     </filter>
     25     <php>
     26         <env name="APP_ENV" value="testing"/>
     27         <env name="CACHE_DRIVER" value="array"/>
     28         <env name="SESSION_DRIVER" value="array"/>
     29         <env name="QUEUE_DRIVER" value="sync"/>
     30     </php>
     31 </phpunit>