Skip to content

Commit 46f1fcf

Browse files
committed
unskip tests
1 parent 0656cc3 commit 46f1fcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/modules/mongodb/src/mongodb-container.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const IMAGE = getImage(__dirname);
66

77
describe("MongodbContainer", { timeout: 240_000 }, () => {
88
// connect4 {
9-
it.skip("should work using default version 4.0.1", async () => {
9+
it("should work using default version 4.0.1", async () => {
1010
const mongodbContainer = await new MongoDBContainer(IMAGE).start();
1111

1212
// directConnection: true is required as the testcontainer is created as a MongoDB Replica Set.
@@ -36,7 +36,7 @@ describe("MongodbContainer", { timeout: 240_000 }, () => {
3636
// }
3737

3838
// connect6 {
39-
it.skip("should work using version 6.0.1", async () => {
39+
it("should work using version 6.0.1", async () => {
4040
const mongodbContainer = await new MongoDBContainer("mongo:6.0.1").start();
4141

4242
// directConnection: true is required as the testcontainer is created as a MongoDB Replica Set.

0 commit comments

Comments
 (0)