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" ref="vnInputRef"
v-model="value" v-model="value"
v-bind="{ ...$attrs, ...styleAttrs }" v-bind="{ ...$attrs, ...styleAttrs }"
type="text" :type="$attrs.type"
:class="{ required: $attrs.required }" :class="{ required: $attrs.required }"
@keyup.enter="onEnterPress()" @keyup.enter="onEnterPress()"
> >
@ -60,8 +60,8 @@ const onEnterPress = () => {
<slot name="prepend" /> <slot name="prepend" />
</template> </template>
<template #append v-if="$slots.append"> <template #append>
<slot name="append" /> <slot name="append" v-if="$slots.append" />
<QIcon <QIcon
name="close" name="close"
size="xs" size="xs"

View File

@ -8,6 +8,7 @@ describe('ClaimDevelopment', () => {
cy.viewport(1920, 1080); cy.viewport(1920, 1080);
cy.login('developer'); cy.login('developer');
cy.visit(`/#/claim/${claimId}/development`); cy.visit(`/#/claim/${claimId}/development`);
cy.waitForElement('tbody');
}); });
it('should reset line', () => { it('should reset line', () => {