20 lines
428 B
PHP
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,
|
|
]);
|
|
}
|
|
}
|