fix: use file name in cypress tests

This commit is contained in:
Livio Bieri 2023-09-28 09:43:03 +02:00
parent dbe74f754b
commit d646454ae9
2 changed files with 102 additions and 102 deletions

View File

@ -4,7 +4,7 @@ const openMobileNavigation = () => {
cy.get('[data-cy="navigation-mobile-menu-button"]').click();
}
describe("Navigation tests", () => {
describe("navigation.cy.js", () => {
beforeEach(() => {
cy.manageCommand("cypress_reset");
});

View File

@ -1,6 +1,6 @@
import {checkNavigationLink, login, PARTICIPANT_LOGIN, visitCoursePage} from "./helpers";
describe("Preview Bar", () => {
describe("preview.cy.js", () => {
beforeEach(() => {
cy.manageCommand("cypress_reset");
})