@@ -8,7 +8,7 @@ describe("QdrantContainer", () => {
88
99 // connectQdrantSimple {
1010 it ( "should connect to the client" , async ( ) => {
11- const container = await new QdrantContainer ( "qdrant/qdrant:latest " ) . start ( ) ;
11+ const container = await new QdrantContainer ( "qdrant/qdrant:v1.13.4 " ) . start ( ) ;
1212
1313 const client = new QdrantClient ( { url : `http://${ container . getRestHostAddress ( ) } ` } ) ;
1414
@@ -22,7 +22,7 @@ describe("QdrantContainer", () => {
2222 it ( "should work with valid API keys" , async ( ) => {
2323 const apiKey = crypto . randomUUID ( ) ;
2424
25- const container = await new QdrantContainer ( "qdrant/qdrant:latest " ) . withApiKey ( apiKey ) . start ( ) ;
25+ const container = await new QdrantContainer ( "qdrant/qdrant:v1.13.4 " ) . withApiKey ( apiKey ) . start ( ) ;
2626
2727 const client = new QdrantClient ( { url : `http://${ container . getRestHostAddress ( ) } ` , apiKey } ) ;
2828
@@ -35,7 +35,7 @@ describe("QdrantContainer", () => {
3535 it ( "should fail for invalid API keys" , async ( ) => {
3636 const apiKey = crypto . randomUUID ( ) ;
3737
38- const container = await new QdrantContainer ( "qdrant/qdrant:latest " ) . withApiKey ( apiKey ) . start ( ) ;
38+ const container = await new QdrantContainer ( "qdrant/qdrant:v1.13.4 " ) . withApiKey ( apiKey ) . start ( ) ;
3939
4040 const client = new QdrantClient ( {
4141 url : `http://${ container . getRestHostAddress ( ) } ` ,
@@ -49,7 +49,7 @@ describe("QdrantContainer", () => {
4949
5050 // connectQdrantWithConfig {
5151 it ( "should work with config files - valid API key" , async ( ) => {
52- const container = await new QdrantContainer ( "qdrant/qdrant:latest " ) . withConfigFile ( path . resolve ( __dirname , "test_config.yaml" ) ) . start ( ) ;
52+ const container = await new QdrantContainer ( "qdrant/qdrant:v1.13.4 " ) . withConfigFile ( path . resolve ( __dirname , "test_config.yaml" ) ) . start ( ) ;
5353
5454 const client = new QdrantClient ( { url : `http://${ container . getRestHostAddress ( ) } ` , apiKey : "SOME_TEST_KEY" } ) ;
5555
@@ -60,7 +60,7 @@ describe("QdrantContainer", () => {
6060 // }
6161
6262 it ( "should work with config files - invalid API key" , async ( ) => {
63- const container = await new QdrantContainer ( "qdrant/qdrant:latest " ) . withConfigFile ( path . resolve ( __dirname , "test_config.yaml" ) ) . start ( ) ;
63+ const container = await new QdrantContainer ( "qdrant/qdrant:v1.13.4 " ) . withConfigFile ( path . resolve ( __dirname , "test_config.yaml" ) ) . start ( ) ;
6464
6565 const client = new QdrantClient ( {
6666 url : `http://${ container . getRestHostAddress ( ) } ` ,
0 commit comments