fix(tests): Reduce interrupt interval for non-nextcloud tests

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2024-04-06 12:00:51 +02:00
Родитель 77c1acc13f
Коммит 05c8073fd4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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]