Update tests

This commit is contained in:
2026-03-21 10:14:38 +01:00
parent cf010ad4f5
commit d2ddaef0d4
26 changed files with 798 additions and 101 deletions
@@ -21,6 +21,11 @@ export default async function grabPageErrorComponent({ error, routeParams, is404
routeParams,
module,
bundledMap,
serverRes: {
responseOptions: {
status: is404 ? 404 : 500
}
}
};
}
catch {
@@ -37,6 +42,11 @@ export default async function grabPageErrorComponent({ error, routeParams, is404
routeParams,
module: { default: DefaultNotFound },
bundledMap: {},
serverRes: {
responseOptions: {
status: is404 ? 404 : 500
}
}
};
}
}