Skip to content

Commit

Permalink
style(front): apply prettier
Browse files Browse the repository at this point in the history
Reviewed-by: andriacap
  • Loading branch information
andriacap committed Jan 3, 2025
1 parent bd0778f commit 85dca11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const paramsByDestination = [
entityLabel: 'Habitat',
expectedValue: 'Inconnu',
},
// TODO: some fields seems to be not handled to be directly added as default value
// TODO: some fields seems to be not handled to be directly added as default value
// {
// paramsName: 'nom_cite',
// paramsValue: 'test_nomcite',
Expand Down Expand Up @@ -102,17 +102,14 @@ describe('Import - Upload step', () => {

if (destination === 'occhab' && entityLabel) {
const dataQaEntity = `[data-qa="import-entity-tab-${entityLabel}"]`;
cy.get(dataQaEntity, { timeout: 30000 })
.should('be.visible')
.click();
cy.get(dataQaEntity, { timeout: 30000 }).should('be.visible').click();
}

handleFieldValidation(dataQa, paramsName, expectedValue, fieldType);
});
cy.visitImport();
cy.removeFirstImportInList();
});

});
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h5 class="card-title mb-0">{{ 'Import.FieldMapping.Title' | translate }}</h5>
class="entity-tab-label"
[matBadge]="invalidEntityControls(entitythemes.entity.label)"
[matBadgeHidden]="invalidEntityControls(entitythemes.entity.label) < 1"
[attr.data-qa]="'import-entity-tab-'+entitythemes.entity.label"
[attr.data-qa]="'import-entity-tab-' + entitythemes.entity.label"
>
{{ entitythemes.entity.label }}
</span>
Expand Down

0 comments on commit 85dca11

Please sign in to comment.