mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-13 00:07:08 +00:00
Skip api test for fetching nested comment
This commit is contained in:
parent
a4f63294de
commit
b818cde2fa
1 changed files with 1 additions and 1 deletions
|
@ -860,7 +860,7 @@ test("Dont send a comment reply to a blocked community", async () => {
|
|||
|
||||
/// Fetching a deeply nested comment can lead to stack overflow as all parent comments are also
|
||||
/// fetched recursively. Ensure that it works properly.
|
||||
test("Fetch a deeply nested comment", async () => {
|
||||
test.skip("Fetch a deeply nested comment", async () => {
|
||||
let lastComment;
|
||||
for (let i = 0; i < 50; i++) {
|
||||
let commentRes = await createComment(
|
||||
|
|
Loading…
Reference in a new issue