Skip to content

Commit 18f8da3

Browse files
chore: add test for export reliance
1 parent e00143b commit 18f8da3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/build.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ describe("Build Test", () => {
7070
const esmKeys = Object.keys(esmModule).sort();
7171

7272
expect(cjsKeys).toEqual(esmKeys);
73-
expect(cjsKeys).toEqual(expect.arrayContaining(["MongoDbTools", "AtlasTools", "AtlasLocalTools", "AllTools"]));
73+
// There are more tools but we will only check for a few.
74+
expect(cjsKeys).toEqual(expect.arrayContaining(["AllTools", "AggregateTool", "FindTool"]));
7475
});
7576
});

0 commit comments

Comments
 (0)