forked from verdnatura/salix-front
refs #6907 test: update ClaimDevelopment spec
This commit is contained in:
parent
0e4936bd0f
commit
88cf5160f8
|
@ -52,7 +52,7 @@ const onEnterPress = () => {
|
|||
ref="vnInputRef"
|
||||
v-model="value"
|
||||
v-bind="{ ...$attrs, ...styleAttrs }"
|
||||
type="text"
|
||||
:type="$attrs.type"
|
||||
:class="{ required: $attrs.required }"
|
||||
@keyup.enter="onEnterPress()"
|
||||
>
|
||||
|
@ -60,8 +60,8 @@ const onEnterPress = () => {
|
|||
<slot name="prepend" />
|
||||
</template>
|
||||
|
||||
<template #append v-if="$slots.append">
|
||||
<slot name="append" />
|
||||
<template #append>
|
||||
<slot name="append" v-if="$slots.append" />
|
||||
<QIcon
|
||||
name="close"
|
||||
size="xs"
|
||||
|
|
|
@ -8,6 +8,7 @@ describe('ClaimDevelopment', () => {
|
|||
cy.viewport(1920, 1080);
|
||||
cy.login('developer');
|
||||
cy.visit(`/#/claim/${claimId}/development`);
|
||||
cy.waitForElement('tbody');
|
||||
});
|
||||
|
||||
it('should reset line', () => {
|
||||
|
|
Loading…
Reference in New Issue