Mite/test/mite.test.js

7 lines
153 B
JavaScript

import { expect, test } from "bun:test";
import { Mite } from "../src/Mite.js";
test("Mite Exists", () => {
expect(typeof Mite).toBe("function");
});