remove resync test

This commit is contained in:
philipp lang 2023-02-07 23:44:30 +01:00
parent 7448a09e5b
commit ae922bbee1
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
<?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);
}
}