Skip to content

Commit 5822912

Browse files
Fix lint
1 parent f13cc86 commit 5822912

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/modules/qdrant/src/qdrant-container.test.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ describe("QdrantContainer", () => {
4949

5050
// connectQdrantWithConfig {
5151
it("should work with config files - valid API key", async () => {
52-
const container = await new QdrantContainer("qdrant/qdrant:v1.13.4").withConfigFile(path.resolve(__dirname, "test_config.yaml")).start();
52+
const container = await new QdrantContainer("qdrant/qdrant:v1.13.4")
53+
.withConfigFile(path.resolve(__dirname, "test_config.yaml"))
54+
.start();
5355

5456
const client = new QdrantClient({ url: `http://${container.getRestHostAddress()}`, apiKey: "SOME_TEST_KEY" });
5557

@@ -60,7 +62,9 @@ describe("QdrantContainer", () => {
6062
// }
6163

6264
it("should work with config files - invalid API key", async () => {
63-
const container = await new QdrantContainer("qdrant/qdrant:v1.13.4").withConfigFile(path.resolve(__dirname, "test_config.yaml")).start();
65+
const container = await new QdrantContainer("qdrant/qdrant:v1.13.4")
66+
.withConfigFile(path.resolve(__dirname, "test_config.yaml"))
67+
.start();
6468

6569
const client = new QdrantClient({
6670
url: `http://${container.getRestHostAddress()}`,

0 commit comments

Comments
 (0)