Sha256: 76ca53f4181ec6c447d183be3942671b72f600eee678af9e6e7c70348d9cc68a
Contents?: true
Size: 778 Bytes
Versions: 12
Compression:
Stored size: 778 Bytes
Contents
# encoding: utf-8 require 'acceptance_helper' describe 'disable_all_filters WiceGrid', type: :request, js: true do before :each do visit '/disable_all_filters' end it 'should not have disabled filters' do expect(page).to have_no_selector('#grid_f_id_fr') expect(page).to have_no_selector('#grid_f_id_to') expect(page).to have_no_selector('#grid_f_description') expect(page).to have_no_selector('#grid_f_created_at_fr_year') expect(page).to have_no_selector('#grid_f_created_at_fr_month') expect(page).to have_no_selector('#grid_f_created_at_to_year') expect(page).to have_no_selector('#grid_f_created_at_to_month') expect(page).to have_no_selector('#grid_f_title') expect(page).to have_no_selector('#grid_f_archived') end end
Version data entries
12 entries across 12 versions & 2 rubygems