🔥 **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:
BT
2026-05-02 22:00:26 +01:00
parent 63aed880e1
commit 04e3e30fcf
54 changed files with 3440 additions and 298 deletions
+31
View File
@@ -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);
});