Files
grecia/spec/components/layout/footer_component_spec.rb
Javi Martín 8053cc5e1c Open footer description links in the same window
This is a funny one, because we were accidentally opening them in the
same window without intending to do so since commit 928312e21, since the
`sanitize` method removes the `target` attribute. So the test we're
adding already passed without these changes.
2023-10-24 16:41:03 +02:00

14 lines
309 B
Ruby

require "rails_helper"
describe Layout::FooterComponent do
describe "description links" do
it "generates links that open in the same tab" do
render_inline Layout::FooterComponent.new
page.find(".info") do |info|
expect(info).not_to have_css "a[target]"
end
end
end
end