From 05c8073fd497d7166c4b757367ab410ce27c9682 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Sat, 6 Apr 2024 12:00:51 +0200 Subject: [PATCH] fix(tests): Reduce interrupt interval for non-nextcloud tests Signed-off-by: Marcel Klehr --- src/test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/test.js b/src/test/test.js index dd541ecfb6..4d9401deac 100644 --- a/src/test/test.js +++ b/src/test/test.js @@ -4792,7 +4792,7 @@ describe('Floccus', function() { const setInterrupt = () => { if (!timeouts.length) { timeouts = new Array(1000).fill(0).map(() => - ACCOUNT_DATA.type === 'nextcloud-bookmarks' ? random.int(50000, 150000) : random.int(500,20000) + ACCOUNT_DATA.type === 'nextcloud-bookmarks' ? random.int(50000, 150000) : random.int(500,6000) ) } const timeout = timeouts[(i++) % 1000]