Thanks for the great episode. I know you mentioned that once you've got it all set up it is quite similar to doing system tests (as system tests use Capybara) but are there any plans for an episode on getting set up with system tests, differences between what was implemented in this video (feature tests), and best practices?
thanks for this episode, very helpful!
However, I have the following code:
html erb
```
Name
```
spec
```
it "allows deleting of existing reservation takers" do
restaurant = create(:restaurant, staff_names: [{"name"=>"Marc Jeffrey", "pin"=>""}])
visit restaurant_users_path
fill_in "restaurant[staff_names][][name]", match: :first, with: "Nezar Khadem"
click_on "Save Reservation Takers"
within(first("td a.delete-taker")) do
click_link('-')
expect(page).not_to have_css("a.delete-taker", text: "-")
end
end
end
```
the view looks like this:
![](https://pasteboard.co/I9VzyK4.jpg)
How can I test the deleting of the user?