From 49a4a60d82b5c21c20780e41bc16d8e6702c08f1 Mon Sep 17 00:00:00 2001 From: Naz Date: Wed, 16 Aug 2023 15:48:52 +0800 Subject: [PATCH] Fixed posts Content API test run in isolation closes https://github.com/TryGhost/Arch/issues/76 - The posts test suite was failing when run in isolation. This was due to "collections" labs flag not being turned on, the events were not going through to collections service correctly --- ghost/core/test/e2e-api/content/posts.test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ghost/core/test/e2e-api/content/posts.test.js b/ghost/core/test/e2e-api/content/posts.test.js index 850a57288c..02b3ef87f7 100644 --- a/ghost/core/test/e2e-api/content/posts.test.js +++ b/ghost/core/test/e2e-api/content/posts.test.js @@ -26,6 +26,8 @@ describe('Posts Content API', function () { let agent; before(async function () { + // NOTE: can be removed after collections -> GA + mockManager.mockLabsEnabled('collections'); agent = await agentProvider.getContentAPIAgent(); await fixtureManager.init('owner:post', 'users', 'user:inactive', 'posts', 'tags:extra', 'api_keys', 'newsletters', 'members:newsletters'); await agent.authenticate();