remove console

This commit is contained in:
Tommy Verrall
2023-08-02 12:55:46 +02:00
parent 5ab2c738df
commit c725ae4e2b
2 changed files with 2 additions and 2 deletions
@@ -41,7 +41,7 @@ describe("Get gateway data", (): void => {
it("Get blacklisted gateways", async (): Promise<void> => {
const response = await contract.getBlacklistedGateways();
if (response === null) {
console.log("No blacklisted gateways");
// no blacklisted gateways returns an empty array
expect(response).toBeNull();
} else {
response.forEach(function (value) {
@@ -237,7 +237,7 @@ describe("Get mixnode data", (): void => {
it("Get blacklisted mixnodes", async (): Promise<void> => {
const response = await contract.getBlacklistedMixnodes();
if (response === null) {
console.log("No blacklisted mixnodes");
// no blacklisted mixnodes returns an empty array
expect(response).toBeNull();;
} else {
response.forEach(function (value) {