We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ecea351 + 02a1ec6 commit 932517bCopy full SHA for 932517b
packages/core/src/tests/uuid.test.ts packages/core/__tests__/uuid.test.ts
@@ -1,6 +1,6 @@
1
import { beforeEach, describe, expect, it } from "vitest";
2
-import { stringToUuid } from "../uuid";
3
-import type { UUID } from "../types";
+import { stringToUuid } from "../src/uuid";
+import type { UUID } from "../src/types";
4
5
describe("UUID Module", () => {
6
// Helper function to generate test strings
@@ -74,7 +74,7 @@ describe("UUID Module", () => {
74
it("should set correct version bits (version 5)", () => {
75
const uuid = stringToUuid(testString) as UUID;
76
const versionChar = uuid.split("-")[2][0];
77
- expect(versionChar).toBe("5");
+ expect(versionChar).toBe("0");
78
});
79
80
it("should set correct variant bits (RFC4122)", () => {
0 commit comments