Why do you have this meta tag?
<meta http-equiv="refresh" content="0;url='https://daily-drum.test/login'" />
Hello guys !
I'm running into weird issues. When running any test that make a request, it gives me back an 302 redirect, no matters what the URL is.
public function test_login_screen_can_be_rendered()
{
$response = $this->get('/login')->dump();
$response->assertStatus(200);
}
When I dump the reponse data I get :
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0;url='https://daily-drum.test/login'" />
<title>Redirecting to https://daily-drum.test/login</title>
</head>
<body>
Redirecting to <a href="https://daily-drum.test/login">https://daily-drum.test/login</a>.
</body>
</html>
I don't really understand why it's happening. Any suggestions ? I think it's maybe a problem of the created server or I don't know what's really happen. Btw, I'm using Laragon, but I think it's not maybe related ?
Please or to participate in this conversation.