We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c858ce commit e45479aCopy full SHA for e45479a
src/tools.ts
@@ -31,7 +31,7 @@ export const checkNotifications = async (
31
mcpServer: McpServer,
32
): Promise<void> => {
33
const testTargetId = getLastTestTargetId();
34
- if (testTargetId) {
+ /*if (testTargetId) {
35
const notifications = await getNotifications(APIKEY, testTargetId);
36
notifications.forEach(async (notification) => {
37
if (!sentNotificationsPerTestTarget[testTargetId].has(notification.id)) {
@@ -46,7 +46,7 @@ export const checkNotifications = async (
46
}
47
48
});
49
- }
+ }*/
50
};
51
52
export const registerTools = (server: McpServer): void => {
0 commit comments