File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
packages/modules/qdrant/src Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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 ( ) } ` ,
You can’t perform that action at this time.
0 commit comments