Skip to content

Commit 4c96cce

Browse files
authoredNov 12, 2024··
fix: print ssrTransform error (#6885)
1 parent 98f76ea commit 4c96cce

File tree

1 file changed

+4
-1
lines changed
  • packages/vitest/src/node/pools

1 file changed

+4
-1
lines changed
 

‎packages/vitest/src/node/pools/rpc.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ export function createMethodsRPC(project: WorkspaceProject, options: MethodsOpti
110110

111111
// serialize rollup error on server to preserve details as a test error
112112
function handleRollupError(e: unknown): never {
113-
if (e instanceof Error && 'plugin' in e) {
113+
if (
114+
e instanceof Error
115+
&& ('plugin' in e || 'frame' in e || 'id' in e)
116+
) {
114117
// eslint-disable-next-line no-throw-literal
115118
throw {
116119
name: e.name,

0 commit comments

Comments
 (0)
Please sign in to comment.