レスポンスステータスが正しいこと
use Illuminate\Http\Response;
$response = $this->getAjax($path);
$response->assertStatus(Response::HTTP_OK);
Jsonの構造が一致していること
$response = $this->getAjax($path);
$expected = [
'status' => 'ok',
];
$response->assertExactJson($expected);
こちらもおススメ