Why is it that from a unit test in Laravel if I do the following request, decode the json response, it comes back as an empty array:
$response = $this->get(route('api.inspections.get', [
"id" => $inspection->id
]));
$apiInspection = $response->json(); # Empty array :(
Yet doing the most basic get request to that same URL gets me a nice json response.
$inspection = file_get_contents(route('api.inspections.get', [
"id" => $inspection->id
]));
$inspection = json_decode($inspection); # The expected inspection stdClass
Thanks
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire