generated from nhcarrigan/template
17 lines
365 B
TypeScript
17 lines
365 B
TypeScript
/**
|
|
* @copyright NHCarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
/* eslint-disable vitest/valid-expect -- Test expectations don't need messages */
|
|
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
describe("index", () => {
|
|
it("should export from the module", () => {
|
|
expect.assertions(1);
|
|
expect(true).toBeTruthy();
|
|
});
|
|
});
|