--wip-- [skip ci]

This commit is contained in:
philipp lang 2023-02-07 23:00:10 +01:00
parent 311f1281f6
commit 35a707dd66
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?php
namespace Tests\Feature\Member;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Tests\TestCase;
class ResyncTest extends TestCase
{
use DatabaseTransactions;
public function testItResynchsMembers(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}