tballak
tballak
Any solution? I'm facing the same issue with nuxt.
I managed to fix this with (`vitest.setup.ts`): ``` beforeAll(() => { ... vi.mock('primevue/config', async (importOriginal) => await importOriginal()); }); ```
There is also an issue with the order of `registerEndpoint`. Let's say I have two endpoints `/endpoint1` and `/endpoint2` ``` registerEndpoint('/endpoint1', resp1) registerEndpoint('/endpoint2', resp2) ``` and in my tested code...