🔥 **Tests:** Removed obsolete feature tests for deleted components and endpoints across the project.

This commit is contained in:
BT
2026-05-02 19:59:16 +01:00
parent ef3c06acb9
commit 63aed880e1
9 changed files with 14 additions and 824 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
use Livewire\Livewire;
it('rejects non-string updates to currentCountry to prevent TypeError on string-typed property', function () {
Livewire::test('country.chooser')
->set('currentCountry', [])
->assertStatus(422);
});