diff --git a/tests/Feature/MemberRegistrationTest.php b/tests/Feature/MemberRegistrationTest.php index d26233ea..d6d17c70 100644 --- a/tests/Feature/MemberRegistrationTest.php +++ b/tests/Feature/MemberRegistrationTest.php @@ -10,7 +10,7 @@ use Illuminate\Support\Facades\Mail; use Tests\TestCase; -class MemberRegistrationTestDisabled extends TestCase +class MemberRegistrationTest extends TestCase { use DatabaseTransactions; @@ -45,6 +45,8 @@ class MemberRegistrationTestDisabled extends TestCase protected function setUp(): void { + $this->markTestSkipped('Registration pages are disabled.'); + parent::setUp(); // Create member data to test for in DB diff --git a/tests/Feature/ParticipantRegistrationTest.php b/tests/Feature/ParticipantRegistrationTest.php index f9305587..508431d0 100644 --- a/tests/Feature/ParticipantRegistrationTest.php +++ b/tests/Feature/ParticipantRegistrationTest.php @@ -14,7 +14,7 @@ use Mockery; use Tests\TestCase; -class ParticipantRegistrationTestDisabled extends TestCase +class ParticipantRegistrationTest extends TestCase { use DatabaseTransactions; @@ -70,6 +70,8 @@ class ParticipantRegistrationTestDisabled extends TestCase protected function setUp(): void { + $this->markTestSkipped('Registration pages are disabled.'); + parent::setUp(); $this->event = Event::findOrFail($this->data['selected_camp']); $this->participantData = [