Fix tests
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
e3b52bf901
commit
1cf8d34b78
|
@ -2,12 +2,19 @@
|
|||
|
||||
namespace Tests\EndToEnd;
|
||||
|
||||
use App\Country;
|
||||
use App\Member\Member;
|
||||
use Tests\EndToEndTestCase;
|
||||
|
||||
class MemberSearchTest extends EndToEndTestCase
|
||||
{
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Country::factory()->create(['name' => 'Deutschland']);
|
||||
}
|
||||
|
||||
public function testItHandlesFullTextSearch(): void
|
||||
{
|
||||
$this->withoutExceptionHandling()->login()->loginNami();
|
||||
|
|
|
@ -39,7 +39,7 @@ class CreateTest extends TestCase
|
|||
'without_education_at' => null,
|
||||
'without_efz_at' => null,
|
||||
'address' => '',
|
||||
], $response, 'data');
|
||||
], $response, 'meta.default');
|
||||
}
|
||||
|
||||
public function testItDoesntDisplayActivitiesAndSubactivitiesNotInNami(): void
|
||||
|
|
Loading…
Reference in New Issue