From 81e65cbbdabbf448d1c9b1a60fcd15c48325e538 Mon Sep 17 00:00:00 2001 From: Christian Cueni Date: Thu, 13 Oct 2022 11:43:15 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20test=20=F0=9F=99=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cypress/e2e/mediaLibrary.cy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/mediaLibrary.cy.js b/cypress/e2e/mediaLibrary.cy.js index 418906c7..814811f9 100644 --- a/cypress/e2e/mediaLibrary.cy.js +++ b/cypress/e2e/mediaLibrary.cy.js @@ -12,6 +12,6 @@ describe("MediaLibrary", () => { cy.get('[data-cy="medialibrary-link"]').click(); cy.get('[data-cy="Handlungsfelder-link"]').click(); cy.get('[data-cy="Fahrzeug-link"]').click(); - cy.get('[data-cy="hf-title]').should('contain', 'Fahrzeug') + cy.get('[data-cy="hf-title"]').should('contain', 'Fahrzeug') }); });