Skip to content

Commit

Permalink
e2e: disable scrollTo.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyd1997 authored Dec 19, 2023
1 parent c4b62cf commit e3d159e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generators/entity/templates/entity-e2e-test.js.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ describe('<%= context.entityNameCapitalized %> Screen Tests', () => {
<%_ context.fields.filter(field => !field.id).forEach((field, index) => { _%>
<%_ let formFieldType = context.getEntityFormFieldType(field); _%>
// <%= field.fieldName %>
await scrollTo('<%= field.fieldName %>', '<%= context.entityInstance %>DetailScrollView')
// await scrollTo('<%= field.fieldName %>', '<%= context.entityInstance %>DetailScrollView')
<%_ if (formFieldType === 'text') { _%>
<%_ if (field.fieldType === 'byte[]') { _%>
<%_ if (field.fieldTypeBlobContent !== 'text') { _%>
Expand Down Expand Up @@ -201,7 +201,7 @@ describe('<%= context.entityNameCapitalized %> Screen Tests', () => {
<%_ context.fields.filter(field => !field.id).forEach((field, index) => { _%>
<%_ let formFieldType = context.getEntityFormFieldType(field); _%>
// <%= field.fieldName %>
await scrollTo('<%= field.fieldName %>', '<%= context.entityInstance %>DetailScrollView')
// await scrollTo('<%= field.fieldName %>', '<%= context.entityInstance %>DetailScrollView')
<%_ if (formFieldType === 'text') { _%>
<%_ if (field.fieldType === 'byte[]') { _%>
<%_ if (field.fieldTypeBlobContent !== 'text') { _%>
Expand Down

0 comments on commit e3d159e

Please sign in to comment.