Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
[AAE-6394] Category in modeling app e2e (#3356)
Browse files Browse the repository at this point in the history
* [AAE-6394] Category in modeling app e2e

* [AAE-6394] Category e2e test updated

* fix

* CR

* deleted one-line methods

* trigger travis

* fix lint

* [AAE-6394] Update tests

Co-authored-by: Bartosz Sekula <[email protected]>
  • Loading branch information
2 people authored and Travis CI User committed Jan 26, 2022
1 parent ef17609 commit 04d20c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
(submit)="submit($event)"
>
<ama-process-category-selector
data-automation-id="create-process-category-modal"
(categoryChange)=onCategoryChange($event)
></ama-process-category-selector>
</modelingsdk-entity-dialog-content>
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@

<mat-autocomplete #auto="matAutocomplete">
<mat-option
*ngFor="let category of filteredCategories$ | async"
*ngFor="let category of filteredCategories$ | async; index as i"
[value]="category"
[attr.data-automation-id]="'process-category-selector-option-' + i"
>
{{category}}
</mat-option>
Expand Down

0 comments on commit 04d20c6

Please sign in to comment.