unlogged_spec.rb 325 B

1234567891011121314151617
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. RSpec.describe 'UnloggedBrowsing', :js, :streaming 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