diff --git a/tests/Feature/LoginTest.php b/tests/Feature/LoginTest.php new file mode 100644 index 000000000..9a70913bf --- /dev/null +++ b/tests/Feature/LoginTest.php @@ -0,0 +1,29 @@ +get('login'); + + $response->assertSuccessful() + ->assertSee('Forgot Your Password?'); + } + + /** @test */ + public function view_register_page() + { + $response = $this->get('register'); + + $response->assertSuccessful() + ->assertSee('Register a new account'); + } +} \ No newline at end of file