File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
tests/integration/tools/mongodb Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ describeWithMongoDB(
510510 expect ( indexes ) . toHaveLength ( 1 ) ;
511511 expect ( indexes [ 0 ] ?. name ) . toEqual ( "vector_1_vector" ) ;
512512 expect ( indexes [ 0 ] ?. type ) . toEqual ( "vectorSearch" ) ;
513- expect ( indexes [ 0 ] ?. status ) . toEqual ( " PENDING" ) ;
513+ expect ( indexes [ 0 ] ?. status ) . toEqual ( expect . stringMatching ( / P E N D I N G | B U I L D I N G / ) ) ;
514514 expect ( indexes [ 0 ] ?. queryable ) . toEqual ( false ) ;
515515 expect ( indexes [ 0 ] ?. latestDefinition ) . toEqual ( {
516516 fields : [
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ export type MongoClusterConfiguration = MongoRunnerConfiguration | MongoSearchCo
1616
1717const DOWNLOAD_RETRIES = 10 ;
1818
19- const DEFAULT_LOCAL_IMAGE = "mongodb/mongodb-atlas-local:8" ;
19+ // TODO: Revert this to generic tag 8, once the problem with atlas-local image
20+ // is addressed.
21+ const DEFAULT_LOCAL_IMAGE = "mongodb/mongodb-atlas-local:8.2.2-20251125T154829Z" ;
2022export class MongoDBClusterProcess {
2123 static async spinUp ( config : MongoClusterConfiguration ) : Promise < MongoDBClusterProcess > {
2224 if ( MongoDBClusterProcess . isSearchOptions ( config ) ) {
You can’t perform that action at this time.
0 commit comments