Skip to content

Commit 5c07bb4

Browse files
committedDec 19, 2023
fix(vitest-environment): handle different entry format
1 parent 6c84c9e commit 5c07bb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ export async function getVitestConfigFromNuxt(
151151
transform(code, id) {
152152
if (id.match(/nuxt(3|-nightly)?\/.*\/entry\./)) {
153153
return code.replace(
154-
/(?<!vueAppPromise = )entry\(\)\.catch/,
155-
'Promise.resolve().catch'
154+
/(?<!vueAppPromise = )entry\(\)/,
155+
'Promise.resolve()'
156156
)
157157
}
158158
},

0 commit comments

Comments
 (0)
Please sign in to comment.