Skip to content

Commit 80408f0

Browse files
committed
test(Page): add Cypress test for dynamic content error handling
1 parent b515dc3 commit 80408f0

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"use strict";
2+
3+
describe("Page content error handling", () => {
4+
it("renders fallback error message when dynamic content fails", () => {
5+
cy.visit("/404");
6+
7+
cy.contains("Failed to load page content.").should("exist");
8+
});
9+
});

0 commit comments

Comments
 (0)