Reduce rubocop diff

This commit is contained in:
Sojan Jose
2026-01-16 01:09:07 -08:00
parent 9ef476c6d8
commit 7061c3dde0
14 changed files with 29 additions and 61 deletions
@@ -1,6 +1,6 @@
require 'rails_helper'
RSpec.describe 'Api::V1::Accounts::BaseController' do
RSpec.describe 'Api::V1::Accounts::BaseController', type: :request do
let(:account) { create(:account) }
let(:inbox) { create(:inbox, account: account) }
let!(:conversation) { create(:conversation, account: account, inbox: inbox) }
@@ -1,6 +1,6 @@
require 'rails_helper'
RSpec.describe 'MFA API' do
RSpec.describe 'MFA API', type: :request do
before do
skip('Skipping since MFA is not configured in this environment') unless Chatwoot.encryption_configured?
allow(Chatwoot).to receive(:mfa_enabled?).and_return(true)