A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

18 lignes
592B

  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="Application Test Suite">
  9. <directory suffix="Test.php">./tests</directory>
  10. </testsuite>
  11. </testsuites>
  12. <php>
  13. <env name="APP_ENV" value="testing"/>
  14. <env name="CACHE_DRIVER" value="array"/>
  15. <env name="QUEUE_CONNECTION" value="sync"/>
  16. </php>
  17. </phpunit>