Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into dev
This commit is contained in:
commit
aa0c127533
|
@ -6,4 +6,4 @@
|
|||
ng-model="$ctrl.model">
|
||||
</textarea>
|
||||
<label class="mdl-textfield__label placeholder" translate>{{$ctrl.label}}</label>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue