Files
dsa/_template/main.spec.ts
naomi 9e7387a281
Node.js CI / Lint and Test (push) Successful in 22s
feat: add template to make my life easier
2025-12-03 10:00:55 -08:00

15 lines
290 B
TypeScript

/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { describe, it, expect } from "vitest";
import { doThing } from "./main.js";
describe("mineColor", () => {
it("should do the thing", () => {
expect(doThing()).toBe(true);
});
});