Skip to content

Commit

Permalink
Skip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 committed Oct 2, 2023
1 parent 23b3199 commit 08b5478
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion langchain/src/chains/graph_qa/tests/cypher.int.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Neo4jGraph } from "../../../graphs/neo4j_graph.js";
import { OpenAI } from "../../../llms/openai.js";
import { ChainValues } from "../../../schema/index.js";

describe("testCypherGeneratingRun", () => {
describe.skip("testCypherGeneratingRun", () => {
it("generate and execute Cypher statement correctly", async () => {
const url = process.env.NEO4J_URI as string;
const username = process.env.NEO4J_USERNAME as string;
Expand Down
2 changes: 1 addition & 1 deletion langchain/src/graphs/tests/neo4j_graph.int.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { test } from "@jest/globals";
import { Neo4jGraph } from "../neo4j_graph.js";

test("Test that Neo4j database is correctly instantiated and connected", async () => {
test.skip("Test that Neo4j database is correctly instantiated and connected", async () => {
const url = process.env.NEO4J_URI as string;
const username = process.env.NEO4J_USERNAME as string;
const password = process.env.NEO4J_PASSWORD as string;
Expand Down

0 comments on commit 08b5478

Please sign in to comment.