2
0

Convert admin/settings controller specs to system specs (#31548)

This commit is contained in:
Matt Jankowski
2024-09-03 11:29:32 -04:00
committed by GitHub
parent ef4920c6c9
commit 928390c2ba
14 changed files with 170 additions and 162 deletions

View File

@@ -0,0 +1,21 @@
# frozen_string_literal: true
require 'rails_helper'
describe 'Admin::Settings::Discovery' do
it 'Saves changes to discovery settings' do
sign_in admin_user
visit admin_settings_discovery_path
check trends_box
click_on submit_button
expect(page)
.to have_content(success_message)
end
def trends_box
form_label 'form_admin_settings.trends'
end
end