mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-05-03 16:24:55 +00:00
🔥 **Cleanup:** Removed BookCase and OrangePill models, factories, migrations, and related references. Added tests for new service and meetup creation flows. Updated PHPUnit settings and browser-specific configurations.
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
use Livewire\Livewire;
|
||||
|
||||
it('mounts settings.profile when authenticated', function () {
|
||||
actingAsUser();
|
||||
Livewire::test('settings.profile')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts settings.password when authenticated', function () {
|
||||
actingAsUser();
|
||||
Livewire::test('settings.password')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts settings.appearance when authenticated', function () {
|
||||
actingAsUser();
|
||||
Livewire::test('settings.appearance')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts settings.delete-user-form when authenticated', function () {
|
||||
actingAsUser();
|
||||
Livewire::test('settings.delete-user-form')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts welcome', function () {
|
||||
Livewire::test('welcome')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts language.selector', function () {
|
||||
Livewire::test('language.selector')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts timezone.chooser', function () {
|
||||
Livewire::test('timezone.chooser')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts dashboard.activities', function () {
|
||||
actingAsUser();
|
||||
Livewire::test('dashboard.activities')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts dashboard.top-countries', function () {
|
||||
Livewire::test('dashboard.top-countries')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts dashboard.top-meetups', function () {
|
||||
Livewire::test('dashboard.top-meetups')->assertStatus(200);
|
||||
});
|
||||
Reference in New Issue
Block a user