2026-02-07 16:01:13 +00:00
|
|
|
describe("/activity page", () => {
|
2026-02-25 02:24:51 +05:30
|
|
|
it("signed-out user sees an auth prompt", () => {
|
2026-02-07 16:01:13 +00:00
|
|
|
cy.visit("/activity");
|
2026-02-25 02:24:51 +05:30
|
|
|
cy.contains(/local authentication|sign in to mission control/i, {
|
|
|
|
|
timeout: 20_000,
|
|
|
|
|
}).should("be.visible");
|
2026-02-07 16:01:13 +00:00
|
|
|
});
|
|
|
|
|
});
|