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 3c9c438 commit 8262774Copy full SHA for 8262774
tests/utils/search.ts
@@ -1,3 +1,4 @@
1
+import { randomUUID } from "node:crypto";
2
import { assert, getClient } from "./meilisearch-test-utils.js";
3
import type { Film } from "./test-data/films.js";
4
import type {
@@ -9,7 +10,7 @@ import type {
9
10
SearchResult,
11
} from "../../src/index.js";
12
-export const INDEX_UID = "b568151e-ddb8-455e-85b9-871e8d57c6b7";
13
+export const INDEX_UID = randomUUID();
14
export const client = await getClient("Master");
15
export const index = client.index<Film>(INDEX_UID);
16
0 commit comments