diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts
index 10acb175e8..2394d3e587 100644
--- a/cypress/support/e2e.ts
+++ b/cypress/support/e2e.ts
@@ -94,4 +94,16 @@ beforeEach(() => {
description: 'Includes core functionality and bug fixes',
},
]).as('getVersions');
+ cy.intercept(
+ { pathname: '/api/whats-new' },
+ {
+ id: 1,
+ title: "What's new",
+ calloutText: '',
+ footer: '',
+ createdAt: '2025-06-27T14:55:58.717Z',
+ updatedAt: '2025-06-27T15:06:44.092Z',
+ items: [],
+ },
+ ).as('getWhatsNew');
});