© 2026 Hedgehog Software, LLC
Table::make() ->reorderable('sort_order');
livewire(ListCategories::class) ->assertCanSeeTableRecords($categories) ->callAction('reorderRecords'); // also tried TestAction::make('reorderRecords')->table()
Action [reorderRecords] not found on table.
livewire(ListCategories::class) ->tap(function (Testable $testable): void { /** @var ListCategories $livewire */ $livewire = $testable->instance(); $table = $livewire->getTable(); expect($table) ->isReorderAuthorized()->toBeTrue(); });