setup wizard debug

This commit is contained in:
Čarodej
2022-03-13 18:30:03 +01:00
parent 2bba6dc051
commit 5e48af22a2
100 changed files with 308 additions and 300 deletions

View File

@@ -24,7 +24,7 @@ class NotificationsTest extends TestCase
'notifiable_type' => 'App\Users\Models\User',
'notifiable_id' => $user->id,
'data' => json_encode([
'type' => 'file-request',
'category' => 'file-request',
'title' => 'File Request Filled',
'description' => "Your file request for 'Documents' folder was filled successfully.",
'action' => [
@@ -44,7 +44,7 @@ class NotificationsTest extends TestCase
->actingAs($user)
->getJson('/api/user/notifications')
->assertJsonFragment([
'type' => 'file-request',
'category' => 'file-request',
])
->assertStatus(200);
}