Skip to content

Commit

Permalink
cypress: adjust skip (#28097)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima authored Dec 4, 2024
1 parent cd4c939 commit 3d2ebc6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ describe('<%= entityClass %> e2e test', () => {
cy.url().should('match', <%= entityInstance %>PageUrlPattern);
});
it<% if (jpaMetamodelFiltering && (clientFrameworkAngular || clientFrameworkVue)) { %>.skip<% } %>('edit button click should load edit <%= entityClass %> page and save', () => {
<% if (jpaMetamodelFiltering && clientFrameworkVue && requiredRelationships.length) { %>// Reason: jpaMetamodelFiltering with required relationship missbehavior<% } %>
it<% if (jpaMetamodelFiltering && clientFrameworkVue && requiredRelationships.length) { %>.skip<% } %>('edit button click should load edit <%= entityClass %> page and save', () => {
cy.get(entityEditButtonSelector).first().click();
cy.getEntityCreateUpdateHeading('<%= entityClass %>');
cy.get(entityCreateSaveButtonSelector).click();
Expand Down

0 comments on commit 3d2ebc6

Please sign in to comment.