Codeception API testing response comes back as 'N/A'
问题 I am writing an API using Laravel and Codeception as my testing framework. I am having trouble getting Codeception to come back with a response code that I can pick up from Codeception as well as a JSON response. I've written a simple test to get a list of users from a GET request. The test is as follows: $I = new ApiGuy($scenario); $I->wantTo("access API methods if I'm authenticated as a User"); $I->sendGET('users'); $I->seeResponseIsJson(); $I->seeResponseCodeIs(200); I can see the results