add ignore clauses to tests

This commit is contained in:
Michael C
2023-02-20 22:20:47 -05:00
parent c84eb839a0
commit f70a26009c
6 changed files with 12 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ export function userCounter(req: Request, res: Response, next: NextFunction): vo
method: "post",
url: `${config.userCounterURL}/api/v1/addIP?hashedIP=${getIP(req)}`,
httpAgent
}).catch(() => Logger.debug(`Failing to connect to user counter at: ${config.userCounterURL}`));
}).catch(() => /* instanbul skip next */ Logger.debug(`Failing to connect to user counter at: ${config.userCounterURL}`));
}
}