[Vuejs]-Test assertions fail in vitest because vue component DOM is not updating after an axios request in a method

1👍

I was able to solve the problem by wrapping the assertion in a "waitFor" function like so:

import { waitFor } from '@testing-library/vue';

await waitFor(() => {
 getByText('new text');
});
👤Cal El

Leave a comment