When coding unit tests there is a common pattern of declaring a fixture and then wait for a flush.
button = await fixture(
html` <nuxeo-move-content-to-coldstorage-button></nuxeo-move-content-to-coldstorage-button> `
);
await flush();
We could factor this logic in order to avoid such verbose approach.
- is related to
-
NXP-28044 Add unit tests to Web UI
- Resolved