Rename cypress describe text to match error text in pipelines

This commit is contained in:
Daniel Egger 2023-05-24 14:59:14 +02:00
parent 321c57b709
commit b65958bc0f
6 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
import { login } from "./helpers";
describe("circle page", () => {
describe("circle.cy.js", () => {
beforeEach(() => {
cy.manageCommand("cypress_reset");

View File

@ -1,6 +1,6 @@
import { login } from "./helpers";
describe("Competence", () => {
describe("competence.cy.js", () => {
beforeEach(() => {
cy.manageCommand("cypress_reset");

View File

@ -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");

View File

@ -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;

View File

@ -1,6 +1,6 @@
import { login } from "./helpers";
describe("MediaLibrary", () => {
describe("mediaLibrary.cy.js", () => {
beforeEach(() => {
cy.manageCommand("cypress_reset");

View File

@ -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");