base_ui/tests/global.test.ts
2025-02-01 13:04:55 +03:30

7 lines
167 B
TypeScript

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