null]); $result = (new UnsplashService)->search('cats'); expect($result)->toBe(['results' => [], 'total' => 0, 'total_pages' => 0]); }); test('giphy service tolerates a null api key without throwing', function () { config(['services.giphy.api_key' => null]); $result = (new GiphyService)->search('cats'); expect($result)->toBe(['results' => [], 'total' => 0, 'total_pages' => 0]); });