/**
  * @test
  */
 public function it_displays_the_vacancy_management_table_on_timeslot()
 {
     $this->arrangeBusinessWithOwner();
     $this->business->update(['strategy' => 'timeslot']);
     $this->actingAs($this->owner);
     $this->visit(route('manager.business.vacancy.show', $this->business));
     $this->seePageIs($this->business->slug . '/manage/vacancy/show');
     $this->see($this->vacancy->service->slug);
 }