2025-07-10 15:24:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Tests;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
|
|
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
|
|
|
{
|
2026-08-16 10:50:28 +02:00
|
|
|
protected function setUp(): void
|
|
|
|
|
{
|
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
|
|
// CI runs the asset build in a separate job, so there is no Vite
|
|
|
|
|
// manifest here; without this any test that renders the layout fails.
|
|
|
|
|
$this->withoutVite();
|
|
|
|
|
}
|
2025-07-10 15:24:15 +02:00
|
|
|
}
|