mirror of
https://github.com/internetee/registry.git
synced 2025-07-24 03:30:33 +02:00
13 lines
326 B
Ruby
13 lines
326 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.feature 'CSV Export' do
|
|
background do
|
|
Setting.registrar_ip_whitelist_enabled = false
|
|
sign_in_to_registrar_area(user: FactoryGirl.create(:api_user))
|
|
end
|
|
|
|
scenario 'exports csv' do
|
|
visit registrar_domains_url
|
|
click_button t('registrar.domains.index.export_csv_btn')
|
|
end
|
|
end
|