Files
openclaw-mission-control/frontend/cypress/e2e/activity_smoke.cy.ts
2026-02-07 16:01:13 +00:00

8 lines
255 B
TypeScript

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");
});
});