import "@testing-library/jest-dom/vitest";

Object.defineProperty(document, "doctype", {
  value: "<!DOCTYPE html>",
});

const meta = document.createElement("meta");
meta.setAttribute("charset", "utf-8");
document.head.appendChild(meta);