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,31 @@
|
||||
<?php
|
||||
|
||||
use Livewire\Livewire;
|
||||
|
||||
it('mounts the auth.login component', function () {
|
||||
Livewire::test('auth.login')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts the auth.register component', function () {
|
||||
Livewire::test('auth.register')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts the auth.forgot-password component', function () {
|
||||
Livewire::test('auth.forgot-password')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts the auth.reset-password component with a token', function () {
|
||||
Livewire::withQueryParams(['email' => 'foo@example.com'])
|
||||
->test('auth.reset-password', ['token' => 'fake-reset-token'])
|
||||
->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts the auth.confirm-password component', function () {
|
||||
actingAsUser();
|
||||
Livewire::test('auth.confirm-password')->assertStatus(200);
|
||||
});
|
||||
|
||||
it('mounts the auth.verify-email component', function () {
|
||||
actingAsUser();
|
||||
Livewire::test('auth.verify-email')->assertStatus(200);
|
||||
});
|
||||
Reference in New Issue
Block a user