mirror of
https://github.com/mastodon/mastodon.git
synced 2025-03-13 20:09:10 +01:00
27 lines
604 B
Ruby
27 lines
604 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin::Settings::Appearance' do
|
|
let(:admin_user) { Fabricate(:admin_user) }
|
|
|
|
before { sign_in(admin_user) }
|
|
|
|
it 'Saves changes to appearance settings' do
|
|
visit admin_settings_appearance_path
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.settings.appearance.title'))
|
|
|
|
fill_in custom_css_field,
|
|
with: 'html { display: inline; }'
|
|
|
|
click_on submit_button
|
|
|
|
expect(page)
|
|
.to have_content(success_message)
|
|
end
|
|
|
|
def custom_css_field
|
|
form_label 'form_admin_settings.custom_css'
|
|
end
|
|
end
|