consolidate tests
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user