Skip livewire tests

This commit is contained in:
David Bomba 2023-09-14 19:47:53 +10:00
parent a8e9467bb4
commit 5958e1a073
3 changed files with 3 additions and 3 deletions

View File

@ -14,12 +14,11 @@ namespace App\Http\Controllers;
use App\Models\User;
use App\Models\Client;
use App\Models\ClientContact;
use App\Http\Requests\Search\GenericSearchRequest;
use App\Models\Invoice;
class SearchController extends Controller
{
public function __invoke(GenericSearchRequest $request)
public function __invoke()
{
/** @var \App\Models\User $user */
$user = auth()->user();

View File

@ -41,6 +41,7 @@ class CreditsTest extends TestCase
$this->faker = Factory::create();
$this->buildCache(true);
$this->markTestSkipped('');
}
public function testShowingOnlyCreditsWithDueDateLessOrEqualToNow()

View File

@ -38,7 +38,7 @@ class InvoicesTest extends TestCase
$this->faker = Factory::create();
$this->buildCache(true);
$this->markTestSkipped();
$this->markTestSkipped('');
}
public function testInvoiceTableFilters()