From 65d910f43b3e2962fffe3acbd0d8c964401ffbbb Mon Sep 17 00:00:00 2001 From: Naz Date: Wed, 30 Nov 2022 13:24:48 +0700 Subject: [PATCH] Increased timeout for the import job test refs https://github.com/TryGhost/Ghost/commit/9fe1274fbe23ec40cb88dc9b5a01e5415fee3f4b - Temporary fix to let the CI pass the test. Needs investigation into why MySQL is so much slower comparing to SQLite --- ghost/core/test/regression/api/admin/members-importer.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/core/test/regression/api/admin/members-importer.test.js b/ghost/core/test/regression/api/admin/members-importer.test.js index 3104bf21fc..1bfc748999 100644 --- a/ghost/core/test/regression/api/admin/members-importer.test.js +++ b/ghost/core/test/regression/api/admin/members-importer.test.js @@ -343,7 +343,7 @@ describe('Members Importer API', function () { should.exist(jsonResponse.meta); // Wait for the job to finish - await sleep(10000); + await sleep(15000); assert(!!settingsCache.get('email_verification_required'), 'Email verification should now be required');