9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
|
|
describe("/activity page", () => {
|
||
|
|
it("signed-out user sees an auth prompt", () => {
|
||
|
|
cy.visit("/activity");
|
||
|
|
cy.contains(/local authentication|sign in to mission control/i, {
|
||
|
|
timeout: 20_000,
|
||
|
|
}).should("be.visible");
|
||
|
|
});
|
||
|
|
});
|