Skip to content

Commit b48b536

Browse files
committed
fix
1 parent ada2e89 commit b48b536

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration/helpers.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,9 @@ export function validateParameters(tool: ToolInfo, parameters: ParameterInfo[]):
200200

201201
export function describeAtlas (name: number | string | Function | jest.FunctionLike, fn: jest.EmptyFunction) {
202202
if (!process.env.MDB_MCP_API_CLIENT_ID?.length || !process.env.MDB_MCP_API_CLIENT_SECRET?.length) {
203-
return describe.skip(name, fn);
203+
return describe.skip("atlas", () => {
204+
describe(name, fn);
205+
});
204206
}
205207
return describe("atlas", () => {
206208
describe(name, fn);

0 commit comments

Comments
 (0)