unlogged_spec.rb 302 B

1234567891011121314151617
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe 'UnloggedBrowsing' do
  4. subject { page }
  5. before do
  6. visit root_path
  7. end
  8. it 'loads the home page' do
  9. expect(subject).to have_css('div.app-holder')
  10. expect(subject).to have_css('div.columns-area__panels__main')
  11. end
  12. end