I have a test which verify status. It should be 200
When I run this
public function testBasicTest()
{
$response = $this->json('GET', '/');
$response->assertStatus(200);
}
It pass but when I add url: /clients always status 404
public function testBasicTest()
{
$response = $this->json('GET', '/clients');
$response->assertStatus(200);
}
Error:
Expected status code 200 but received 404.
Failed asserting that false is true.