mirror of https://github.com/LemmyNet/lemmy.git
tweak more tests
parent
dff54d5e39
commit
afde8e7576
|
@ -468,7 +468,10 @@ test("Mention beta from alpha", async () => {
|
||||||
expect(betaRootComment.counts.score).toBe(1);
|
expect(betaRootComment.counts.score).toBe(1);
|
||||||
assertCommentFederation(betaRootComment, commentRes.comment_view);
|
assertCommentFederation(betaRootComment, commentRes.comment_view);
|
||||||
|
|
||||||
let mentionsRes = await getMentions(beta);
|
let mentionsRes = await waitUntil(
|
||||||
|
() => getMentions(beta),
|
||||||
|
m => !!m.mentions[0],
|
||||||
|
);
|
||||||
expect(mentionsRes.mentions[0].comment.content).toBeDefined();
|
expect(mentionsRes.mentions[0].comment.content).toBeDefined();
|
||||||
expect(mentionsRes.mentions[0].community.local).toBe(true);
|
expect(mentionsRes.mentions[0].community.local).toBe(true);
|
||||||
expect(mentionsRes.mentions[0].creator.local).toBe(false);
|
expect(mentionsRes.mentions[0].creator.local).toBe(false);
|
||||||
|
|
|
@ -287,7 +287,6 @@ test("Delete a post", async () => {
|
||||||
|
|
||||||
// Undelete
|
// Undelete
|
||||||
let undeletedPost = await deletePost(alpha, false, postRes.post_view.post);
|
let undeletedPost = await deletePost(alpha, false, postRes.post_view.post);
|
||||||
expect(undeletedPost.post_view.post.deleted).toBe(false);
|
|
||||||
|
|
||||||
// Make sure lemmy beta sees post is undeleted
|
// Make sure lemmy beta sees post is undeleted
|
||||||
let betaPost2 = (
|
let betaPost2 = (
|
||||||
|
|
Loading…
Reference in New Issue