Skip to content

Commit b9a1c1c

Browse files
committed
test: update 6.0 version test to 6.0.9
from 6.0.6
1 parent db7455c commit b9a1c1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/mongodb-memory-server-core/src/__tests__/testUtils/globalSetup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { assertion, isNullOrUndefined } from '../../util/utils';
55
export = async function globalSetup(): Promise<void> {
66
const defaultVersion = resolveConfig(ResolveConfigVariables.VERSION);
77
assertion(!isNullOrUndefined(defaultVersion), new Error('Default version is not defined'));
8-
const versions = [defaultVersion, '4.0.28', '4.2.23', '4.4.22', '5.0.19', '6.0.6'];
8+
const versions = [defaultVersion, '4.0.28', '4.2.23', '4.4.22', '5.0.19', '6.0.9'];
99
// Ensure all required versions are downloaded for tests
1010
for (const version of versions) {
1111
await MongoBinary.getPath({ version });

packages/mongodb-memory-server-core/src/util/__tests__/MongoInstance.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ describe('MongodbInstance', () => {
252252
const gotPort = await getFreePort(27445);
253253
const mongod = await MongodbInstance.create({
254254
instance: { port: gotPort, dbPath: tmpDir },
255-
binary: { version: '6.0.6' },
255+
binary: { version: '6.0.9' },
256256
});
257257
expect(mongod.mongodProcess!.pid).toBeGreaterThan(0);
258258
await mongod.stop();

0 commit comments

Comments
 (0)