mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
chore: Update dependencies to the latest versions (#5033)
This commit is contained in:
@@ -74,7 +74,7 @@ RSpec.describe Inbox do
|
||||
let(:channel_val) { Channel::FacebookPage.new }
|
||||
|
||||
it do
|
||||
expect(inbox.facebook?).to eq(true)
|
||||
expect(inbox.facebook?).to be(true)
|
||||
expect(inbox.inbox_type).to eq('Facebook')
|
||||
end
|
||||
end
|
||||
@@ -83,7 +83,7 @@ RSpec.describe Inbox do
|
||||
let(:channel_val) { Channel::WebWidget.new }
|
||||
|
||||
it do
|
||||
expect(inbox.facebook?).to eq(false)
|
||||
expect(inbox.facebook?).to be(false)
|
||||
expect(inbox.inbox_type).to eq('Website')
|
||||
end
|
||||
end
|
||||
@@ -98,7 +98,7 @@ RSpec.describe Inbox do
|
||||
let(:channel_val) { Channel::WebWidget.new }
|
||||
|
||||
it do
|
||||
expect(inbox.web_widget?).to eq(true)
|
||||
expect(inbox.web_widget?).to be(true)
|
||||
expect(inbox.inbox_type).to eq('Website')
|
||||
end
|
||||
end
|
||||
@@ -107,7 +107,7 @@ RSpec.describe Inbox do
|
||||
let(:channel_val) { Channel::Api.new }
|
||||
|
||||
it do
|
||||
expect(inbox.web_widget?).to eq(false)
|
||||
expect(inbox.web_widget?).to be(false)
|
||||
expect(inbox.inbox_type).to eq('API')
|
||||
end
|
||||
end
|
||||
@@ -122,7 +122,7 @@ RSpec.describe Inbox do
|
||||
let(:channel_val) { Channel::Api.new }
|
||||
|
||||
it do
|
||||
expect(inbox.api?).to eq(true)
|
||||
expect(inbox.api?).to be(true)
|
||||
expect(inbox.inbox_type).to eq('API')
|
||||
end
|
||||
end
|
||||
@@ -131,7 +131,7 @@ RSpec.describe Inbox do
|
||||
let(:channel_val) { Channel::FacebookPage.new }
|
||||
|
||||
it do
|
||||
expect(inbox.api?).to eq(false)
|
||||
expect(inbox.api?).to be(false)
|
||||
expect(inbox.inbox_type).to eq('Facebook')
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user