laravel-crm/tests/RestAPI/QuoteTest.php

14 lines
259 B
PHP

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