feat: initial prototype
Node.js CI / Lint and Test (push) Successful in 41s

This commit is contained in:
2025-03-06 17:41:16 -08:00
parent 8b4ccadcfe
commit e53db48154
16 changed files with 5348 additions and 15 deletions
+15
View File
@@ -0,0 +1,15 @@
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { describe, expect, it } from "vitest";
import { html } from "../src/config/html.ts";
describe("html", () => {
it(`should be a string`, () => {
expect.assertions(1);
expect(html, "what did you do").toBeTypeOf("string");
});
});