Skip to content

Commit

Permalink
put tests back in and change host so not only localhost is allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel7373 committed Oct 15, 2024
1 parent 1c15116 commit 9b9638b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/cypress/e2e/tab.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 9b9638b

Please sign in to comment.