Skip to content

Commit

Permalink
Add UUID to project name in integration test (#1094)
Browse files Browse the repository at this point in the history
There were some issues with creating and deleting a project of the same
name in an integration test - I added a uuid in project name and we
still cleanup by deleting the now unique project name.
  • Loading branch information
nhuang-lc authored Oct 11, 2024
2 parents 540c1a5 + 4da698d commit 5d95af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/tests/run_trees.int.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ test.concurrent(
"Test end() write to metadata",
async () => {
const runId = uuid.v4();
const projectName = `__test_end_metadata_run_tree_js`;
const projectName = `__test_end_metadata_run_tree_js ${runId}`;
const langchainClient = new Client({ timeout_ms: 30_000 });
const parentRunConfig: RunTreeConfig = {
name: "parent_run",
Expand Down

0 comments on commit 5d95af4

Please sign in to comment.