18 lines
		
	
	
		
			319 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			319 B
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'rails_helper'
 | 
						|
 | 
						|
describe 'UnloggedBrowsing', :js, :streaming do
 | 
						|
  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
 |