generated from nhcarrigan/template
All checks were successful
Node.js CI / Lint and Test (push) Successful in 41s
16 lines
343 B
TypeScript
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");
|
|
});
|
|
});
|