mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 17:28:18 +02:00
8 lines
235 B
Ruby
8 lines
235 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.feature 'Registrar area home link', db: true do
|
|
scenario 'is visible' do
|
|
visit new_registrar_user_session_url
|
|
expect(page).to have_link('registrar-home-btn', href: registrar_root_path)
|
|
end
|
|
end
|