forked from AkkomaGang/akkoma
Add failing test, which exposes a bug
This commit is contained in:
parent
4b60d41db9
commit
4453a9cb73
1 changed files with 10 additions and 3 deletions
|
@ -2926,6 +2926,12 @@ test "it resend emails for two users", %{admin: admin} do
|
|||
content: "this is disgusting!"
|
||||
})
|
||||
|
||||
build_conn()
|
||||
|> assign(:user, admin)
|
||||
|> post("/api/pleroma/admin/reports/#{report_id}/notes", %{
|
||||
content: "this is disgusting2!"
|
||||
})
|
||||
|
||||
%{
|
||||
admin_id: admin.id,
|
||||
report_id: report_id,
|
||||
|
@ -2947,12 +2953,13 @@ test "it returns reports with notes", %{admin: admin} do
|
|||
|> assign(:user, admin)
|
||||
|> get("/api/pleroma/admin/reports")
|
||||
|
||||
reponse = json_response(conn, 200)
|
||||
notes = hd(reponse["reports"])["notes"]
|
||||
[note] = notes
|
||||
response = json_response(conn, 200)
|
||||
notes = hd(response["reports"])["notes"]
|
||||
[note, _] = notes
|
||||
|
||||
assert note["user"]["nickname"] == admin.nickname
|
||||
assert note["content"] == "this is disgusting!"
|
||||
assert response["total"] == 1
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue