Files
minori/test/index.spec.ts
T
naomi 5bc2cfbe43
Node.js CI / CI (push) Failing after 7s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 50s
feat: initial prototype attempt
2026-02-03 17:13:57 -08:00

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();
});
});