Files
HexaHost-Panel/tests/TestCase.php
2026-05-17 13:26:14 +02:00

20 lines
428 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function setUp(): void
{
parent::setUp();
config([
'hosting.proxmox.token' => 'test@pam!test=secret',
'hosting.proxmox.url' => 'https://proxmox.test:8006',
'hosting.security.admin_2fa_required' => false,
]);
}
}