release/0.4.0 #60

Merged
myrmidex merged 30 commits from release/0.4.0 into main 2026-08-16 11:58:52 +02:00
Showing only changes of commit d778cfbebb - Show all commits

View file

@ -6,5 +6,12 @@
abstract class TestCase extends BaseTestCase
{
//
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();
}
}