Update LoginTest

This commit is contained in:
Daniel Supernault 2018-11-28 22:11:07 -07:00
parent 3afef810da
commit 5d91fb2051
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,10 @@ class LoginTest extends TestCase
$response->assertSuccessful()
->assertSee('Register a new account');
} else {
$this->assertTrue(true);
$response = $this->get('register');
$response->assertSuccessful()
->assertSee('Registration is closed');
}
}
}