Display Module 13-05-2026

This commit is contained in:
Kevin Adametz 2026-05-13 14:34:08 +02:00
parent 6a65354f4c
commit 9262132325
41 changed files with 496 additions and 334 deletions

View file

@ -29,3 +29,10 @@ test('media picker zeigt ausgewähltes medium ohne livewire property fehler', fu
->assertSee('test-image.jpg')
->assertDontSee('Kein Medium ausgewählt');
});
test('cms media picker und library uploader nutzen 200 mb dateigrenze', function () {
expect(file_get_contents(app_path('Livewire/Admin/Cms/MediaPicker.php')))
->toContain('max:204800')
->and(file_get_contents(app_path('Livewire/Admin/Cms/MediaLibraryUploader.php')))
->toContain('max:204800');
});