Update tests

This commit is contained in:
2026-08-04 21:00:01 +02:00
parent 9dcf13a62e
commit 71d679cc5e
18 changed files with 822 additions and 426 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace Tests\Feature;
use Tests\RefreshDatabase;
use Tests\TestCase;
class StatsPageTest extends TestCase
{
use RefreshDatabase;
public function test_stats_page_renders_with_empty_database(): void
{
$this->get('/stats')->assertOk();
}
}