From 5ffa3b57def8a555111a3a1bad6f9e351fef4c2c Mon Sep 17 00:00:00 2001 From: Fabien O'Carroll Date: Wed, 28 Aug 2024 11:59:52 +0700 Subject: [PATCH] Cleaned up settings cache after test All tests after this one were in a non-sending email state, which luckily doesn't affect these tests, but it will affect future ones! This just cleans up the settings so that they're back to a standard default. --- ghost/core/test/e2e-api/admin/members.test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost/core/test/e2e-api/admin/members.test.js b/ghost/core/test/e2e-api/admin/members.test.js index 12f9d891cf..cd0f7f9f71 100644 --- a/ghost/core/test/e2e-api/admin/members.test.js +++ b/ghost/core/test/e2e-api/admin/members.test.js @@ -904,6 +904,7 @@ describe('Members API', function () { await agent.delete(`/members/${memberFailVerification.id}`); await configUtils.restore(); + settingsCache.set('email_verification_required', false); }); it('Can add and send a signup confirmation email', async function () {