mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
18 lines
306 B
PHP
18 lines
306 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Unit\Filament;
|
|
|
|
use Filament\Facades\Filament;
|
|
use Tests\TestCaseWithDatabase;
|
|
|
|
abstract class FilamentTestCase extends TestCaseWithDatabase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
Filament::setServingStatus();
|
|
}
|
|
}
|