test(e2e): add Cypress scaffold + CI job

This commit is contained in:
Riya
2026-02-07 16:01:13 +00:00
parent d4e5e86a20
commit 94dd8e439d
6 changed files with 1632 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
describe("/activity page", () => {
it("loads without crashing", () => {
cy.visit("/activity");
// In secretless/unsigned state, UI should render the signed-out prompt.
cy.contains(/sign in to view the feed/i).should("be.visible");
});
});