initial commit
This commit is contained in:
19
tests/TestCase.php
Normal file
19
tests/TestCase.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user