Files
cv-roberto/tests/TestCase.php
Roberto 886e3993fc
All checks were successful
Tests / Laravel tests (pull_request) Successful in 12m39s
Enforce PHP and Blade formatting
2026-06-03 22:22:39 +02:00

18 lines
313 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Illuminate\Support\Facades\Storage;
abstract class TestCase extends BaseTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->withoutVite();
Storage::fake('public');
}
}