chore: Update dependencies to the latest versions (#5033)

This commit is contained in:
Sojan Jose
2022-07-15 04:51:59 +02:00
committed by GitHub
parent ea1a27c7d4
commit 4187428729
122 changed files with 546 additions and 526 deletions

View File

@@ -136,7 +136,7 @@ RSpec.describe ReplyMailbox, type: :mailbox do
described_subject
current_message = conversation.messages.last
expect(current_message.content).to eq(
<<-BODY.strip_heredoc.chomp
<<~BODY.chomp
Yes, I am providing you step how to reproduce this issue
On Thu, Aug 19, 2021 at 2:07 PM Tejaswini from Email sender test < tejaswini@chatwoot.com> wrote:
@@ -157,7 +157,7 @@ RSpec.describe ReplyMailbox, type: :mailbox do
described_subject
current_message = conversation.messages.last
expect(current_message.reload.content_attributes[:email][:text_content][:reply]).to eq(
<<-BODY.strip_heredoc.chomp
<<~BODY.chomp
Yes, I am providing you step how to reproduce this issue
On Thu, Aug 19, 2021 at 2:07 PM Tejaswini from Email sender test < tejaswini@chatwoot.com> wrote:

View File

@@ -12,7 +12,7 @@ RSpec.describe SupportMailbox, type: :mailbox do
it 'shouldnt create a conversation in the channel' do
described_subject
expect(conversation.present?).to eq(false)
expect(conversation.present?).to be(false)
end
end
@@ -202,7 +202,7 @@ RSpec.describe SupportMailbox, type: :mailbox do
expect(conversation.inbox.id).to eq(channel_email.inbox.id)
expect(conversation.messages.last.content_attributes['email']['html_content']['reply']).to include(
<<-BODY.strip_heredoc.chomp
<<~BODY.chomp
Hi,
We are providing you platform from here you can sell paid posts on your website.
@@ -231,8 +231,8 @@ RSpec.describe SupportMailbox, type: :mailbox do
expect(conversation.inbox.id).to eq(channel_email.inbox.id)
expect(conversation.messages.last.content).to eq(
<<-BODY.strip_heredoc.chomp
This is html only mail
<<~BODY.chomp
This is html only mail
BODY
)
expect(conversation.messages.last.content_attributes['email']['subject']).to eq('test html only mail')
@@ -243,7 +243,7 @@ RSpec.describe SupportMailbox, type: :mailbox do
expect(conversation.inbox.id).to eq(channel_email.inbox.id)
expect(conversation.messages.last.content).to eq(nil)
expect(conversation.messages.last.content).to be_nil
expect(conversation.messages.last.attachments.count).to eq(1)
expect(conversation.messages.last.content_attributes['email']['subject']).to eq('only attachments')
end