adrema/tests/Feature/Member/ResyncTest.php

19 lines
324 B
PHP
Raw Normal View History

2023-02-07 23:00:10 +01:00
<?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);
}
}