laravel-crm/tests/RestAPI/LeadTest.php

14 lines
257 B
PHP

<?php
it('has all leads', function () {
$admin = actingAsSanctumAuthenticatedAdmin();
$response = test()->getJson(test()->versionRoute('leads'));
$response
->assertOK()
->assertJson([
'data' => [],
]);
});