import { login } from "../helpers"; import { TEST_STUDENT1_USER_ID } from "../../consts"; describe("publicProfileAttendance.cy.js", () => { it("will display optional attendance", () => { cy.manageCommand("cypress_reset --set-optional-attendance-flag"); login("test-trainer1@example.com", "test"); cy.visit( `course/test-lehrgang/profile/${TEST_STUDENT1_USER_ID}/learning-path`, ); cy.get('[data-cy="optional-attendance"]').should( "contain", "Optionale Anwesenheit", ); }); });