generated from nhcarrigan/template
15 lines
290 B
TypeScript
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);
|
|
});
|
|
});
|