Skip to content

Commit da1a6c5

Browse files
committed
fix
1 parent 3c86c82 commit da1a6c5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/versioned/langchain-aws/vectorstore.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ test.beforeEach(async (ctx) => {
3636
const clientArgs = {
3737
client: new Client({
3838
node: `http://${params.elastic_host}:${params.elastic_port}`
39-
})
39+
}),
40+
indexName: 'test_langchain_aws_vectorstore'
4041
}
4142
const { ElasticVectorSearch } = require('@langchain/community/vectorstores/elasticsearch')
4243

test/versioned/langchain-openai/vectorstore.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ test.beforeEach(async (ctx) => {
3434
const clientArgs = {
3535
client: new Client({
3636
node: `http://${params.elastic_host}:${params.elastic_port}`
37-
})
37+
}),
38+
indexName: 'test_langchain_openai_vectorstore'
3839
}
3940
const { ElasticVectorSearch } = require('@langchain/community/vectorstores/elasticsearch')
4041

0 commit comments

Comments
 (0)