From 98dbba5672c07b9a23203a5445f31bc936fce4dd Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 9 Feb 2025 17:42:10 +0600 Subject: [PATCH] api/test: add reddit to finicky list cuz reddit blocked github ips --- api/src/util/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/util/test.js b/api/src/util/test.js index 2ba555ed..9457c1ca 100644 --- a/api/src/util/test.js +++ b/api/src/util/test.js @@ -13,7 +13,7 @@ const getTests = (service) => loadJSON(getTestPath(service)); // services that are known to frequently fail due to external // factors (e.g. rate limiting) -const finnicky = new Set(['bilibili', 'instagram', 'facebook', 'youtube', 'vk', 'twitter']); +const finnicky = new Set(['bilibili', 'instagram', 'facebook', 'youtube', 'vk', 'twitter', 'reddit']); const runTestsFor = async (service) => { const tests = getTests(service);