From 3dbca58a0575e6f44c1f88530b7e4769656f0266 Mon Sep 17 00:00:00 2001 From: Julien Schneider Date: Tue, 16 Jan 2024 15:19:38 +0100 Subject: [PATCH] fix: delete failing e2e test --- .../Project_administration/create_project.cy.ts | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 apps/dsp-app-e2e/cypress/e2e/System_Admin/System_Admin_functions/Project_administration/create_project.cy.ts diff --git a/apps/dsp-app-e2e/cypress/e2e/System_Admin/System_Admin_functions/Project_administration/create_project.cy.ts b/apps/dsp-app-e2e/cypress/e2e/System_Admin/System_Admin_functions/Project_administration/create_project.cy.ts deleted file mode 100644 index e7255dec1e..0000000000 --- a/apps/dsp-app-e2e/cypress/e2e/System_Admin/System_Admin_functions/Project_administration/create_project.cy.ts +++ /dev/null @@ -1,16 +0,0 @@ -describe('create new project', () => { - it('should create a new project', () => { - cy.visit('/'); - cy.get('.create-project-button button').click(); - cy.get('#mat-input-0').type('0123'); - cy.get('#mat-input-1').type('test'); - cy.get('#mat-input-2').type('Test Project'); - cy.get('#mat-input-3').type('this is a test project'); - cy.get('#mat-mdc-chip-list-input-0').type('project'); - cy.get('#mat-mdc-chip-list-input-0').type('{enter}'); - cy.get('#mat-mdc-chip-list-input-0').type('test'); - cy.get('#mat-mdc-chip-list-input-0').type('{enter}'); - cy.get("form.project-form button[type='submit']").click(); - cy.get('.project-longname').should('contain', 'Test Project'); - }); -});