Skip to content

Commit

Permalink
improve uniquess
Browse files Browse the repository at this point in the history
  • Loading branch information
v9n committed Feb 1, 2025
1 parent c0dd863 commit 161dbda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/getWorkflows.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ describe("getWorkflows Tests", () => {
const countFirstPage = 1;

// Isolated test of this account
const wallet = await client.getWallet({ salt: parseInt(process.env.RUN_ID || '112323') });
const salt = (new Date().getTime() * 1000000000) + Math.floor(Math.random() * 100000);
const wallet = await client.getWallet({ salt });
await cleanupWorkflows(client, wallet.address);

// Create 4 workflows
Expand Down

0 comments on commit 161dbda

Please sign in to comment.