mommy/test/html.spec.ts
Naomi Carrigan e53db48154
All checks were successful
Node.js CI / Lint and Test (push) Successful in 41s
feat: initial prototype
2025-03-06 17:41:16 -08:00

16 lines
343 B
TypeScript

/**
* @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");
});
});