mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-05-03 16:24:55 +00:00
10 lines
249 B
PHP
10 lines
249 B
PHP
<?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);
|
|
});
|