import { describe, it, expect } from "vitest";

describe("buildName()", () => {
  it("should return a string", () => {
    expect(buildName()).toBe("monir");
  });
});