diff --git a/client/core/src/components/textarea/textarea.html b/client/core/src/components/textarea/textarea.html index 9bd419e55..6efe39f7a 100644 --- a/client/core/src/components/textarea/textarea.html +++ b/client/core/src/components/textarea/textarea.html @@ -6,4 +6,4 @@ ng-model="$ctrl.model"> - \ No newline at end of file + diff --git a/e2e/paths/item-module/02_edit_item_basic_data.spec.js b/e2e/paths/item-module/02_edit_item_basic_data.spec.js index ca108ac40..3cd383115 100644 --- a/e2e/paths/item-module/02_edit_item_basic_data.spec.js +++ b/e2e/paths/item-module/02_edit_item_basic_data.spec.js @@ -13,6 +13,7 @@ describe('Item Edit basic data path', () => { it(`should edit the item basic data`, async () => { const result = await nightmare + .wait(selectors.itemBasicData.nameInput) .clearInput(selectors.itemBasicData.nameInput) .type(selectors.itemBasicData.nameInput, 'Rose of Purity') .waitToClick(selectors.itemBasicData.typeSelect) diff --git a/e2e/paths/item-module/06_create_item_botanical.spec.js b/e2e/paths/item-module/06_create_item_botanical.spec.js index 5ba0eb653..d52c877d4 100644 --- a/e2e/paths/item-module/06_create_item_botanical.spec.js +++ b/e2e/paths/item-module/06_create_item_botanical.spec.js @@ -11,8 +11,9 @@ describe('Item Create botanical path', () => { .accessToSection('item.card.botanical'); }); - it(`should create a new botanical for the item with id Mjolnir`, async () => { + it(`should create a new botanical for the item Mjolnir`, async () => { const result = await nightmare + .wait(selectors.itemBotanical.botanicalInput) .type(selectors.itemBotanical.botanicalInput, 'Cicuta maculata') .waitToClick(selectors.itemBotanical.genusSelect) .waitToClick(selectors.itemBotanical.genusSelectOptionOne)