Sha256: cb7077a03ec57e78c5f662d2c90e975cce1f69f4dab0cbcbde8a23e352019529
Contents?: true
Size: 373 Bytes
Versions: 44
Compression:
Stored size: 373 Bytes
Contents
require 'rails_helper' feature 'Downloading CSV' do let(:email) { 'test_email@q.com' } before do login using_wait_time 10 do create_contact(email) end end after do remove_test_contact(email) end scenario 'visitor downloads csv' do click_on('Export To CSV') expect( DownloadHelper::download_content ).to include(email) end end
Version data entries
44 entries across 22 versions & 1 rubygems