From 5af4114c615b883a594d602846377a670f7b5855 Mon Sep 17 00:00:00 2001 From: dumbmoron Date: Sat, 7 Sep 2024 12:29:01 +0000 Subject: [PATCH] api/test: add facebook to finnicky services --- api/src/util/test-ci.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/util/test-ci.js b/api/src/util/test-ci.js index e9f342fd..988fac7a 100644 --- a/api/src/util/test-ci.js +++ b/api/src/util/test-ci.js @@ -10,7 +10,7 @@ const tests = loadJSON('./src/util/tests.json'); // services that are known to frequently fail due to external // factors (e.g. rate limiting) -const finnicky = new Set(['bilibili', 'instagram', 'youtube']) +const finnicky = new Set(['bilibili', 'instagram', 'facebook', 'youtube']) const action = process.argv[2]; switch (action) {