1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/spec/system/unlogged_spec.rb

18 lines
302 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
describe 'UnloggedBrowsing' 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