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