We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2b875a commit 79c88e6Copy full SHA for 79c88e6
tests/keys.test.ts
@@ -1,3 +1,4 @@
1
+import { randomUUID } from "node:crypto";
2
import { describe, test } from "vitest";
3
import type {
4
Action,
@@ -62,7 +63,7 @@ const assert: typeof extAssert & typeof customAssert = Object.assign(
62
63
customAssert,
64
);
65
-const KEY_UID = "bd2cbad1-6c5f-48e3-bb92-bc9961bc011e";
66
+const KEY_UID = randomUUID();
67
68
type TestRecord = {
69
[TKey in keyof CreateApiKey]-?: [
0 commit comments