You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
325 B
17 lines
325 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
RSpec.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
|
|
|