mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 09:27:19 +02:00
12 lines
225 B
Ruby
12 lines
225 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.feature 'Contact list', settings: false do
|
|
background do
|
|
sign_in_to_admin_area
|
|
end
|
|
|
|
it 'is visible' do
|
|
visit admin_contacts_path
|
|
expect(page).to have_css('.contacts')
|
|
end
|
|
end
|