1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/features/step_definitions/stepdefs.rb

17 lines
305 B
Ruby

# frozen_string_literal: true
When 'I visit main page' do
visit '/'
end
Then 'I see main page' do
expect(page).to have_css(
'h1',
text: I18n.translate('home.show.primary_title'),
)
expect(page).to have_css(
'h1 small',
text: I18n.translate('home.show.secondary_title'),
)
end