Skip to content

Commit 65a10cc

Browse files
committedDec 11, 2024
test(upstash, vercel-blob): use random base
1 parent 8711a94 commit 65a10cc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

Diff for: ‎test/drivers/upstash.test.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ describe.skipIf(!url || !token)("drivers: upstash", async () => {
99
process.env.UPSTASH_REDIS_REST_URL = url;
1010
process.env.UPSTASH_REDIS_REST_TOKEN = token;
1111
testDriver({
12-
driver: driver({}),
12+
driver: driver({
13+
base: Math.round(Math.random() * 1_000_000).toString(16),
14+
}),
1315
});
1416
});

Diff for: ‎test/drivers/vercel-blob.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe.skipIf(!token)("drivers: vercel-blob", async () => {
99
testDriver({
1010
driver: driver({
1111
access: "public",
12-
base: "test",
12+
base: Math.round(Math.random() * 1_000_000).toString(16),
1313
envPrefix: "VERCEL_TEST",
1414
}),
1515
});

0 commit comments

Comments
 (0)