Chore: Improve conversation auto resolution (#3405)

Fixes: #1583
This commit is contained in:
Shivam Chahar
2021-11-27 09:26:18 +05:30
committed by GitHub
parent 89f9f39e6e
commit a4ee8ee239
11 changed files with 75 additions and 85 deletions

View File

@@ -25,5 +25,10 @@ RSpec.describe TriggerScheduledItemsJob, type: :job do
expect(Conversations::ReopenSnoozedConversationsJob).to receive(:perform_later).once
described_class.perform_now
end
it 'triggers Account::ConversationsResolutionSchedulerJob' do
expect(Account::ConversationsResolutionSchedulerJob).to receive(:perform_later).once
described_class.perform_now
end
end
end