Skip to content

Commit 5b18911

Browse files
committedDec 5, 2023
fix: clean up wrappers when calling renderSuspended
1 parent 8a6a052 commit 5b18911

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎examples/app-vitest-full/nuxt.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// https://v3.nuxtjs.org/api/configuration/nuxt.config
22
export default defineNuxtConfig({
3+
devtools: { enabled: true },
34
modules: ['@nuxt/test-utils/module', '~/modules/custom'],
45
vitest: {
56
startOnBoot: true,

‎src/runtime-utils/render.ts

+3
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ export async function renderSuspended<T>(
7171
const { vueApp } = globalThis.__unctx__.get('nuxt-app').tryUse()
7272
const { render, setup } = component as DefineComponent<any, any>
7373

74+
// cleanup previously mounted test wrappers
75+
document.querySelector(`#${WRAPPER_EL_ID}`)?.remove()
76+
7477
let setupContext: SetupContext
7578

7679
return new Promise<ReturnType<typeof renderFromTestingLibrary>>(resolve => {

0 commit comments

Comments
 (0)
Please sign in to comment.