diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-05-05 10:52:16 +0100 |
---|---|---|
committer | Christophe Closset <christophe.closset@intl.att.com> | 2021-05-06 07:05:14 +0000 |
commit | 92a380e5856be904b064a9136f93b4b45ec93834 (patch) | |
tree | ad07b72e0eef2583b51e5578f0e97eed784ee050 /catalog-ui/src/app/ng2/pages | |
parent | 00b288e068b418ab0ff00ff64ee204adbb4ba382 (diff) |
Increase Import VFC UI test coverage
Change-Id: Ie51411304fefe6b8ee3aa437b980f1e12bbc4707
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3566
Diffstat (limited to 'catalog-ui/src/app/ng2/pages')
-rw-r--r-- | catalog-ui/src/app/ng2/pages/workspace/attributes/attribute-modal.component.html | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/catalog-ui/src/app/ng2/pages/workspace/attributes/attribute-modal.component.html b/catalog-ui/src/app/ng2/pages/workspace/attributes/attribute-modal.component.html index 094045e8b4..590217d0a5 100644 --- a/catalog-ui/src/app/ng2/pages/workspace/attributes/attribute-modal.component.html +++ b/catalog-ui/src/app/ng2/pages/workspace/attributes/attribute-modal.component.html @@ -5,14 +5,14 @@ <!-- ATTRIBUTE NAME - MANDATORY --> <div> <sdc-input - #attributeName - label="Name" - [required]="true" - [(value)]="attributeToEdit.name" - [disabled]="isEdit" - name="attributeName" - testId="attributeName" - [maxLength]="255"> + #attributeName + label="Name" + [required]="true" + [(value)]="attributeToEdit.name" + [disabled]="isEdit" + name="attributeName" + testId="attributeName" + [maxLength]="255"> </sdc-input> <sdc-validation [validateElement]="attributeName" (validityChanged)="onValidityChange($event, 'name')"> <sdc-required-validator message="{{'VALIDATION_ERROR_REQUIRED' | translate : { 'field' : 'Name' } }}"></sdc-required-validator> @@ -38,6 +38,7 @@ <!-- ATTRIBUTE TYPE - MANDATORY --> <sdc-dropdown #attributeType [disabled]="false" label="Type" [required]="true" [selectedOption]="toDropDownOption(this.attributeToEdit.type)" placeHolder="Choose Type" + testId="attributeType" [options]="types" (changed)="onTypeSelected($event)"> <sdc-validation [validateElement]="attributeType" (validityChanged)="onValidityChange($event, 'type')"> <sdc-required-validator message="'required field'"></sdc-required-validator> @@ -48,15 +49,15 @@ <!-- ATTRIBUTE DEFAULT VALUE TEXT - OPTIONAL --> <div *ngIf="attributeToEdit.type != 'boolean'"> <sdc-input - #_default - [required]="false" - label="Default Value" - [(value)]="attributeToEdit._default" - [disabled]="false" - name="_default" - testId="defaultValue" - [maxLength]="255" - (valueChange)="defaultValueChanged()"> + #_default + [required]="false" + label="Default Value" + [(value)]="attributeToEdit._default" + [disabled]="false" + name="_default" + testId="defaultValue" + [maxLength]="255" + (valueChange)="defaultValueChanged()"> </sdc-input> <sdc-validation [validateElement]="_default" (validityChanged)="onValidityChange($event, 'default')"> |