portal tests WIP

This commit is contained in:
SPRINX0\prochazka
2025-01-07 09:32:18 +01:00
parent 8d2c2cd62d
commit bf92943a6a
10 changed files with 15925 additions and 18 deletions

View File

@@ -25,11 +25,11 @@
{header}
</svelte:fragment>
<FormTextField {label} name="value" focused />
<FormTextField {label} name="value" focused data-testid="InputTextModal_value" />
<svelte:fragment slot="footer">
<FormSubmit value="OK" on:click={e => handleSubmit(e.detail)} />
<FormStyledButton type="button" value="Cancel" on:click={closeCurrentModal} />
<FormSubmit value="OK" on:click={e => handleSubmit(e.detail)} data-testid="InputTextModal_ok" />
<FormStyledButton type="button" value="Cancel" on:click={closeCurrentModal} data-testid="InputTextModal_cancel" />
</svelte:fragment>
</ModalBase>
</FormProvider>