util.error: Add test for #1805

Checks that it doesn't fail on a stanza without <error> tag
This commit is contained in:
Kim Alvefur 2023-04-19 12:03:34 +02:00
parent 6114ccee11
commit c4fdaa80b6

View file

@ -56,6 +56,9 @@ describe("util.error", function ()
assert.equal(e, err.context.stanza);
assert.equal("error.example", err.context.by);
assert.not_nil(err.extra.tag);
assert.not_has_error(function ()
errors.from_stanza(st.message())
end);
end);
end);