b2in/tests/bootstrap.php
2026-02-20 17:57:50 +01:00

9 lines
250 B
PHP

<?php
require __DIR__.'/../vendor/autoload.php';
// Config-Cache entfernen, damit phpunit.xml-Umgebungsvariablen (SQLite) greifen
$configCache = __DIR__.'/../bootstrap/cache/config.php';
if (file_exists($configCache)) {
unlink($configCache);
}