From 636b1e67b2d5bc2d5e2ad52970483448aaa0f88a Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Mon, 17 Jul 2023 15:21:00 +0200 Subject: [PATCH] Fixed pages API test snapshot having a flaky cache string (#17391) no issue - `x-cache-invalidate` will vary across different runs as the post's preview uuid will be different each time the post is created --- ghost/core/test/e2e-api/admin/__snapshots__/pages.test.js.snap | 2 +- ghost/core/test/e2e-api/admin/pages.test.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ghost/core/test/e2e-api/admin/__snapshots__/pages.test.js.snap b/ghost/core/test/e2e-api/admin/__snapshots__/pages.test.js.snap index 0e91ab67ac..9bde286f22 100644 --- a/ghost/core/test/e2e-api/admin/__snapshots__/pages.test.js.snap +++ b/ghost/core/test/e2e-api/admin/__snapshots__/pages.test.js.snap @@ -404,7 +404,7 @@ Object { "content-version": StringMatching /v\\\\d\\+\\\\\\.\\\\d\\+/, "etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/, "vary": "Accept-Version, Origin, Accept-Encoding", - "x-cache-invalidate": "/p/6b776308-98f3-44eb-931c-0e235024d7f2/", + "x-cache-invalidate": Any, "x-powered-by": "Express", } `; diff --git a/ghost/core/test/e2e-api/admin/pages.test.js b/ghost/core/test/e2e-api/admin/pages.test.js index 93dc2da839..51f27373e1 100644 --- a/ghost/core/test/e2e-api/admin/pages.test.js +++ b/ghost/core/test/e2e-api/admin/pages.test.js @@ -73,7 +73,8 @@ describe('Pages API', function () { }) .matchHeaderSnapshot({ 'content-version': anyContentVersion, - etag: anyEtag + etag: anyEtag, + 'x-cache-invalidate': anyString }); }); });