From 109578a3eda14418c9af8fbba96f14a5e447c086 Mon Sep 17 00:00:00 2001 From: Michael C Date: Wed, 20 Oct 2021 00:59:08 -0400 Subject: [PATCH] remove extra console.log lines --- test/cases/getStatus.ts | 1 - test/cases/setUsername.ts | 1 - test/cases/voteOnSponsorTime.ts | 2 -- 3 files changed, 4 deletions(-) diff --git a/test/cases/getStatus.ts b/test/cases/getStatus.ts index 10b10db..b515427 100644 --- a/test/cases/getStatus.ts +++ b/test/cases/getStatus.ts @@ -79,7 +79,6 @@ describe("getStatus", () => { it("Should be able to get loadavg only", (done) => { client.get(`${endpoint}/loadavg`) .then(res => { - console.log(res.data); assert.strictEqual(res.status, 200); assert.ok(Number(res.data[0]) >= 0); assert.ok(Number(res.data[1]) >= 0); diff --git a/test/cases/setUsername.ts b/test/cases/setUsername.ts index f1f3f15..89af032 100644 --- a/test/cases/setUsername.ts +++ b/test/cases/setUsername.ts @@ -92,7 +92,6 @@ describe("setUsername", () => { it("Should be able to set username that has never been set", (done) => { postSetUserName(user00PrivateUserID, username00) .then(async res => { - console.log(res.data); const usernameInfo = await getUsernameInfo(getHash(user00PrivateUserID)); assert.strictEqual(res.status, 200); assert.strictEqual(usernameInfo.userName, username00); diff --git a/test/cases/voteOnSponsorTime.ts b/test/cases/voteOnSponsorTime.ts index 377c7d2..fcb823d 100644 --- a/test/cases/voteOnSponsorTime.ts +++ b/test/cases/voteOnSponsorTime.ts @@ -299,7 +299,6 @@ describe("voteOnSponsorTime", () => { .then(async res => { assert.strictEqual(res.status, 200); const row = await getSegmentCategory(UUID); - console.log(row.category); assert.strictEqual(row.category, category); done(); }) @@ -314,7 +313,6 @@ describe("voteOnSponsorTime", () => { .then(async res => { assert.strictEqual(res.status, 200); const row = await getSegmentCategory(UUID); - console.log(row.category); assert.strictEqual(row.category, "intro"); done(); })