consolidate tests

This commit is contained in:
hackerESQ
2024-09-05 18:21:19 -05:00
parent 62f604bc0e
commit 09bb4a531f
5 changed files with 79 additions and 110 deletions
+8 -8
View File
@@ -22,16 +22,16 @@ class RegistrationTest extends TestCase
$response->assertStatus(200);
}
public function test_registration_screen_cannot_be_rendered_if_support_is_disabled(): void
{
if (Features::enabled(Features::registration())) {
$this->markTestSkipped('Registration support is enabled.');
}
// public function test_registration_screen_cannot_be_rendered_if_support_is_disabled(): void
// {
// if (Features::enabled(Features::registration())) {
// $this->markTestSkipped('Registration support is enabled.');
// }
$response = $this->get('/register');
// $response = $this->get('/register');
$response->assertStatus(404);
}
// $response->assertStatus(404);
// }
public function test_new_users_can_register(): void
{