feat: Add support for after param in messages API (#5861)

This commit is contained in:
Pranav Raj S
2022-11-16 08:11:48 -08:00
committed by GitHub
parent 86e0ff76c5
commit 9b9c019de0
2 changed files with 14 additions and 1 deletions

View File

@@ -47,5 +47,16 @@ describe ::MessageFinder do
expect(result.count).to be 6
end
end
context 'with after attribute' do
let(:params) { { after: conversation.messages.first.id } }
it 'filter conversations by status' do
result = message_finder.perform
expect(result.count).to be 6
expect(result.first.id).to be conversation.messages.first.id
expect(result.last.message_type).to eq 'outgoing'
end
end
end
end