Fix deprecation description (#19362)

* Update .stubs.php

Signed-off-by: Florian Raith <37345813+florianraith@users.noreply.github.com>

* Update 05-testing-actions.md

---------

Signed-off-by: Florian Raith <37345813+florianraith@users.noreply.github.com>
Co-authored-by: Dan Harrin <git@danharrin.com>
This commit is contained in:
Florian Raith
2026-02-27 12:00:35 +01:00
committed by GitHub
parent b265ee6246
commit 2a8807fd3a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -314,7 +314,7 @@ it('can only print a sent invoice', function () {
});
```
To ensure sets of actions exist in the correct order, you can use `assertActionsExistInOrder()`:
To ensure sets of actions exist in the correct order, you can use `assertActionListInOrder()`:
```php
use function Pest\Livewire\livewire;
@@ -325,7 +325,7 @@ it('can have actions in order', function () {
livewire(EditInvoice::class, [
'invoice' => $invoice,
])
->assertActionsExistInOrder(['send', 'export']);
->assertActionListInOrder(['send', 'export']);
});
```
+1 -1
View File
@@ -206,7 +206,7 @@ namespace Livewire\Features\SupportTesting {
public function assertTableBulkActionDoesNotExist(string $name): static {}
/**
* @deprecated Use `assertActionsExistInOrder()` instead.
* @deprecated Use `assertActionListInOrder()` instead.
*/
public function assertTableBulkActionsExistInOrder(array $names): static {}