remove console
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user