2026-02-07 16:01:13 +00:00
|
|
|
describe("/activity page", () => {
|
2026-02-08 14:00:01 +00:00
|
|
|
it("signed-out user is redirected to sign-in", () => {
|
2026-02-07 16:01:13 +00:00
|
|
|
cy.visit("/activity");
|
2026-02-08 14:00:01 +00:00
|
|
|
cy.location("pathname", { timeout: 20_000 }).should("match", /\/sign-in/);
|
2026-02-07 16:01:13 +00:00
|
|
|
});
|
|
|
|
|
});
|