Skip to content

Commit

Permalink
Use unique project name
Browse files Browse the repository at this point in the history
  • Loading branch information
shirish87 committed Jan 30, 2024
1 parent 020ef9b commit 31abcfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/automate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe("AutomateClient", () => {
automate: { client, randomProjectId },
}) => {
const projectId = await randomProjectId();
const name = "pricing-project";
const name = `pricing-project-${Date.now()}`;
const data = await client.updateProject(projectId, { name });
expect(data).toBeDefined();
expect(data.id).toBeDefined();
Expand Down

0 comments on commit 31abcfe

Please sign in to comment.