full upgrade to dev

This commit is contained in:
2026-01-08 16:27:40 +01:00
parent 41f404c581
commit cd4d2367ab
20 changed files with 2687 additions and 96 deletions

View File

@@ -2,10 +2,12 @@ import "@testing-library/jest-dom";
import { GET } from "@/app/sitemap.xml/route";
jest.mock("next/server", () => ({
NextResponse: jest.fn().mockImplementation(function (body, init) {
this.body = body;
this.init = init;
NextResponse: jest.fn().mockImplementation((body: unknown, init?: ResponseInit) => {
const response = {
body,
init,
};
return response;
}),
}));