laravel-crm/tests/RestAPI/OrganizationTest.php

14 lines
282 B
PHP

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