Skip to content

Commit

Permalink
Skip test, fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 committed Jul 18, 2023
1 parent a121849 commit 70c46d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions langchain/scripts/check-tree-shaking.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export function listExternals() {
"@zilliz/milvus2-sdk-node/dist/milvus/const/Milvus.js",
"@zilliz/milvus2-sdk-node/dist/milvus/types.js",
"notion-to-md/build/utils/notion.js",
"firebase-admin/app",
"firebase-admin/firestore",
];
}

Expand Down
2 changes: 1 addition & 1 deletion langchain/src/vectorstores/tests/elasticsearch.int.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { OpenAIEmbeddings } from "../../embeddings/openai.js";
import { ElasticVectorSearch } from "../elasticsearch.js";
import { Document } from "../../document.js";

test("ElasticVectorSearch integration", async () => {
test.skip("ElasticVectorSearch integration", async () => {
if (!process.env.ELASTIC_URL) {
throw new Error("ELASTIC_URL not set");
}
Expand Down

0 comments on commit 70c46d7

Please sign in to comment.