createUser(); $response = $this->actingAs($user)->get('/'); $response->assertStatus(302); } public function test_debug(): void { $user = $this->createUser(); $response = $this->actingAs($user)->get('/debug'); $response->assertStatus(200); } }