get('/'); $response = $this->get('/'); $response->ddHeaders(); $response->ddSession(); $response->dd(); $response->assertStatus(200); } public function test_interacting_with_the_session() { $response = $this->withSession(['banned' => false])->get('/'); $response->assertStatus(200); } }