From 9b9638b130570fb26929074e194226e4230b36e0 Mon Sep 17 00:00:00 2001 From: Miguel Lehmann Date: Tue, 15 Oct 2024 11:58:39 +0200 Subject: [PATCH] put tests back in and change host so not only localhost is allowed --- frontend/cypress/e2e/tab.cy.ts | 4 ++-- frontend/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/cypress/e2e/tab.cy.ts b/frontend/cypress/e2e/tab.cy.ts index ac3ed8157e..4d1cdd714b 100644 --- a/frontend/cypress/e2e/tab.cy.ts +++ b/frontend/cypress/e2e/tab.cy.ts @@ -215,7 +215,7 @@ describe('Tab workflow tests', () => { cy.contains('Edited by Cypress'); }); - it.skip('Duplicate objective with tab', () => { + it('Duplicate objective with tab', () => { openThreeDotMenu(); cy.realPress('ArrowDown'); cy.focused().contains('Objective duplizieren'); @@ -337,7 +337,7 @@ describe('Tab workflow tests', () => { cy.contains('This has been edited by Cypress').should('not.exist'); }); - it.skip('Create new key result metric with checkin and edit checkin with tab', () => { + it('Create new key result metric with checkin and edit checkin with tab', () => { // Create keyresult openCreateKeyResult(); cy.wait(500); diff --git a/frontend/package.json b/frontend/package.json index 023c5f5bad..1bbcd384ff 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -3,7 +3,7 @@ "version": "2.0.0", "scripts": { "ng": "ng", - "start": "ng serve ", + "start": "ng serve --host 0.0.0.0", "build": "ng build", "build:staging": "ng build --configuration staging", "watch": "ng build --watch --configuration development",