Fix MemberTest
This commit is contained in:
parent
1edbdab8fd
commit
4ffc14d503
|
@ -1,28 +1,17 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Tests\Feature\Member;
|
namespace Tests\EndToEnd\Member;
|
||||||
|
|
||||||
use App\Activity;
|
use App\Activity;
|
||||||
use App\Group;
|
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\Member;
|
||||||
use App\Member\Membership;
|
use App\Member\Membership;
|
||||||
use App\Subactivity;
|
use App\Subactivity;
|
||||||
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
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
|
public function testItGetsMembers(): void
|
||||||
{
|
{
|
||||||
$this->withoutExceptionHandling()->login()->loginNami();
|
$this->withoutExceptionHandling()->login()->loginNami();
|
Loading…
Reference in New Issue