import { strict as assert } from "node:assert";

import { test } from "./index.js";

test("it does work", () => {
  assert(true);
});
