Skip to content

Commit

Permalink
test(upstash, vercel-blob): use random base
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Dec 11, 2024
1 parent 8711a94 commit 65a10cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion test/drivers/upstash.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ describe.skipIf(!url || !token)("drivers: upstash", async () => {
process.env.UPSTASH_REDIS_REST_URL = url;
process.env.UPSTASH_REDIS_REST_TOKEN = token;
testDriver({
driver: driver({}),
driver: driver({
base: Math.round(Math.random() * 1_000_000).toString(16),
}),
});
});
2 changes: 1 addition & 1 deletion test/drivers/vercel-blob.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe.skipIf(!token)("drivers: vercel-blob", async () => {
testDriver({
driver: driver({
access: "public",
base: "test",
base: Math.round(Math.random() * 1_000_000).toString(16),
envPrefix: "VERCEL_TEST",
}),
});
Expand Down

0 comments on commit 65a10cc

Please sign in to comment.