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