From 4ac9270a2ab94d80bf02481a5a6e639524c2bed2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Fri, 5 Nov 2021 14:25:43 -0400 Subject: [PATCH] test: increase timeout --- test/messaging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/messaging.js b/test/messaging.js index fbec60234f..996ad14bdb 100644 --- a/test/messaging.js +++ b/test/messaging.js @@ -408,7 +408,7 @@ describe('Messaging Library', () => { await db.sortedSetAdd('users:online', Date.now() - ((meta.config.onlineCutoff * 60000) + 50000), herpUid); await socketModules.chats.send({ uid: fooUid }, { roomId: roomId, message: 'second chat message **bold** text' }); - await sleep(1500); + await sleep(3000); const data = await User.notifications.get(herpUid); assert(data.unread[0]); const notification = data.unread[0];