7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
![]() |
import { describe, it, expect } from "vitest";
|
||
|
|
||
|
describe("buildName()", () => {
|
||
|
it("should return a string", () => {
|
||
|
expect(buildName()).toBe("monir");
|
||
|
});
|
||
|
});
|