You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mastodon/spec/system/admin/follow_recommendations_spec.rb

19 lines
420 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Admin Follow Recommendations' do
let(:user) { Fabricate(:admin_user) }
before { sign_in(user) }
describe 'Viewing follow recommendations details' do
it 'shows a list of accounts' do
visit admin_follow_recommendations_path
expect(page)
.to have_content(I18n.t('admin.follow_recommendations.title'))
end
end
end