0
0
Fork 0

refs #6907 test: update ClaimDevelopment spec

This commit is contained in:
Javier Segarra 2024-02-27 11:31:46 +01:00
parent 0e4936bd0f
commit 88cf5160f8
2 changed files with 4 additions and 3 deletions

View File

@ -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"

View File

@ -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', () => {