Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ describeWithMongoDB(
expect(indexes).toHaveLength(1);
expect(indexes[0]?.name).toEqual("vector_1_vector");
expect(indexes[0]?.type).toEqual("vectorSearch");
expect(indexes[0]?.status).toEqual("PENDING");
expect(indexes[0]?.status).toEqual(expect.stringMatching(/PENDING|BUILDING/));
expect(indexes[0]?.queryable).toEqual(false);
expect(indexes[0]?.latestDefinition).toEqual({
fields: [
Expand Down
4 changes: 3 additions & 1 deletion tests/integration/tools/mongodb/mongodbClusterProcess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ export type MongoClusterConfiguration = MongoRunnerConfiguration | MongoSearchCo

const DOWNLOAD_RETRIES = 10;

const DEFAULT_LOCAL_IMAGE = "mongodb/mongodb-atlas-local:8";
// TODO: Revert this to generic tag 8, once the problem with atlas-local image
// is addressed.
const DEFAULT_LOCAL_IMAGE = "mongodb/mongodb-atlas-local:8.2.2-20251125T154829Z";
export class MongoDBClusterProcess {
static async spinUp(config: MongoClusterConfiguration): Promise<MongoDBClusterProcess> {
if (MongoDBClusterProcess.isSearchOptions(config)) {
Expand Down