2023-11-05 08:52:56 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 15:12:25 +10:00
|
|
|
RSpec.describe 'UnloggedBrowsing', :js, :streaming do
|
2023-11-05 08:52:56 +11:00
|
|
|
subject { page }
|
|
|
|
|
|
|
|
before do
|
|
|
|
visit root_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'loads the home page' do
|
|
|
|
expect(subject).to have_css('div.app-holder')
|
|
|
|
|
|
|
|
expect(subject).to have_css('div.columns-area__panels__main')
|
|
|
|
end
|
|
|
|
end
|