From d69912ca3549a09e79691c937bdb6e50bfc93af4 Mon Sep 17 00:00:00 2001 From: mahula Date: Tue, 7 Oct 2025 11:05:41 +0200 Subject: [PATCH] Revert "make test fail to verify artefact upload" This reverts commit 05a9b566892fb9393806db1e0b1ded1145311005. --- .../e2e/authentification/login.form-elements.cy.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/cypress/e2e/authentification/login.form-elements.cy.ts b/cypress/e2e/authentification/login.form-elements.cy.ts index ac32b1cb..a981f76b 100644 --- a/cypress/e2e/authentification/login.form-elements.cy.ts +++ b/cypress/e2e/authentification/login.form-elements.cy.ts @@ -30,15 +30,4 @@ describe('Utopia Map Login Form Elements', () => { .should('be.visible') .should('contain.text', 'Forgot Password?') }) - - it('should fail intentionally to test artifact upload', () => { - // This test is intentionally failing to verify artifact creation and upload - cy.get('h2').should('contain.text', 'Login') - - // Take a screenshot before the intentional failure - cy.screenshot('before-intentional-failure') - - // This assertion will fail intentionally - cy.get('body').should('contain.text', 'This text does not exist on the page') - }) })