-
Notifications
You must be signed in to change notification settings - Fork 61
Add snapshots for EColorPicker and EDatePicker #896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
const waitForDebounce = () => new Promise((resolve) => setTimeout(resolve, 110)) | ||
|
||
beforeAll(() => { | ||
// prevent "[Vuetify] Unable to locate target [data-app]" warnings |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
siehe kommentar oben
|
||
beforeAll(() => { | ||
// prevent "[Vuetify] Unable to locate target [data-app]" warnings | ||
document.body.setAttribute('data-app', 'true') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Das kann man umgehen, indem man gleich im template <div data-app> setzt.
https://github.com/ecamp/ecamp3/pull/701/files#diff-7eacba905c66292c1fc86af66485b30bb2ee2c01a7106822dd9d48537ec3469cR24
<div class="e-form-container" | ||
value="09:52"> | ||
<div class="v-input v-input--hide-details v-input--is-label-active v-input--is-dirty theme--light v-text-field v-text-field--single-line v-text-field--filled v-text-field--enclosed"> | ||
<div class="v-input v-input--hide-details v-input--is-label-active v-input--is-dirty theme--light v-text-field v-text-field--single-line v-text-field--filled v-text-field--is-booted v-text-field--enclosed"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Irgendeine Idee warum v-text-field--is-booted
dazugekommen ist?
i18n | ||
}) | ||
await flushPromises() | ||
await waitForDebounce() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@carlobeltrame that's the reason for v-text-field--is-booted
appearing
No description provided.