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');
});
Source:stackexchange.com