From b65958bc0f38b629501929392765a18662887d75 Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Wed, 24 May 2023 14:59:14 +0200 Subject: [PATCH] Rename cypress describe text to match error text in pipelines --- cypress/e2e/circle.cy.js | 2 +- cypress/e2e/competence.cy.js | 2 +- cypress/e2e/learningPath.cy.js | 2 +- cypress/e2e/login.cy.js | 2 +- cypress/e2e/mediaLibrary.cy.js | 2 +- cypress/e2e/notifications.cy.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cypress/e2e/circle.cy.js b/cypress/e2e/circle.cy.js index 8024cc4f..335a662c 100644 --- a/cypress/e2e/circle.cy.js +++ b/cypress/e2e/circle.cy.js @@ -1,6 +1,6 @@ import { login } from "./helpers"; -describe("circle page", () => { +describe("circle.cy.js", () => { beforeEach(() => { cy.manageCommand("cypress_reset"); diff --git a/cypress/e2e/competence.cy.js b/cypress/e2e/competence.cy.js index a753ad8a..42bf38f6 100644 --- a/cypress/e2e/competence.cy.js +++ b/cypress/e2e/competence.cy.js @@ -1,6 +1,6 @@ import { login } from "./helpers"; -describe("Competence", () => { +describe("competence.cy.js", () => { beforeEach(() => { cy.manageCommand("cypress_reset"); diff --git a/cypress/e2e/learningPath.cy.js b/cypress/e2e/learningPath.cy.js index 62dd42de..c50eb350 100644 --- a/cypress/e2e/learningPath.cy.js +++ b/cypress/e2e/learningPath.cy.js @@ -1,6 +1,6 @@ import { login } from "./helpers"; -describe("learningPath page", () => { +describe("learningPath.cy.js", () => { beforeEach(() => { cy.manageCommand("cypress_reset"); login("test-student1@example.com", "test"); diff --git a/cypress/e2e/login.cy.js b/cypress/e2e/login.cy.js index f7d7cace..9846b735 100644 --- a/cypress/e2e/login.cy.js +++ b/cypress/e2e/login.cy.js @@ -1,6 +1,6 @@ import { login } from "./helpers"; -describe("login", () => { +describe("login.cy.js", () => { Cypress.on("uncaught:exception", (err, runnable) => { // do not fail on failed requests during tests return false; diff --git a/cypress/e2e/mediaLibrary.cy.js b/cypress/e2e/mediaLibrary.cy.js index c86ae46e..a1fd68d1 100644 --- a/cypress/e2e/mediaLibrary.cy.js +++ b/cypress/e2e/mediaLibrary.cy.js @@ -1,6 +1,6 @@ import { login } from "./helpers"; -describe("MediaLibrary", () => { +describe("mediaLibrary.cy.js", () => { beforeEach(() => { cy.manageCommand("cypress_reset"); diff --git a/cypress/e2e/notifications.cy.js b/cypress/e2e/notifications.cy.js index 95eb4189..5b286520 100644 --- a/cypress/e2e/notifications.cy.js +++ b/cypress/e2e/notifications.cy.js @@ -1,6 +1,6 @@ import { login } from "./helpers"; -describe("notifications page", () => { +describe("notifications.cy.js", () => { beforeEach(() => { cy.manageCommand("cypress_reset"); cy.manageCommand("create_default_notifications");