Fix MemberTest

This commit is contained in:
philipp lang 2024-02-02 01:41:25 +01:00
parent 1edbdab8fd
commit 4ffc14d503
1 changed files with 3 additions and 14 deletions

View File

@ -1,28 +1,17 @@
<?php
namespace Tests\Feature\Member;
namespace Tests\EndToEnd\Member;
use App\Activity;
use App\Group;
use App\Invoice\Enums\InvoiceStatus;
use App\Invoice\Models\Invoice;
use App\Invoice\Models\InvoicePosition;
use App\Member\Member;
use App\Member\Membership;
use App\Subactivity;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Tests\TestCase;
use Tests\EndToEndTestCase;
class IndexTest extends TestCase
class IndexTest extends EndToEndTestCase
{
use DatabaseMigrations;
public function setUp(): void
{
parent::setUp();
$this->useMeilisearch();
}
public function testItGetsMembers(): void
{
$this->withoutExceptionHandling()->login()->loginNami();