First commit

This commit is contained in:
2026-08-10 04:29:24 -06:00
commit 26851fa750
71 changed files with 8333 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { afterEach } from "vitest";
import { cleanup } from "@testing-library/vue";
afterEach(() => cleanup());
HTMLDialogElement.prototype.showModal = function showModal() {
this.setAttribute("open", "");
};
HTMLDialogElement.prototype.close = function close() {
this.removeAttribute("open");
};