Integration test of sending and manual appending to Sent mailbox

This commit is contained in:
Michal Horejsek
2020-11-10 11:43:53 +01:00
parent ba65494fce
commit 53404122cc
2 changed files with 54 additions and 0 deletions

View File

@ -211,6 +211,10 @@ func messagesContainsMessageRow(account *accounts.TestAccount, allMessages []int
if message.ID != id {
matches = false
}
case "externalid":
if message.ExternalID != cell.Value {
matches = false
}
case "from": //nolint[goconst]
address := ctx.EnsureAddress(account.Username(), cell.Value)
if !areAddressesSame(message.Sender.Address, address) {