Skip to content

Commit

Permalink
remove extra console.log lines
Browse files Browse the repository at this point in the history
  • Loading branch information
mchangrh committed Oct 20, 2021
1 parent ac15686 commit 109578a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion test/cases/getStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
1 change: 0 additions & 1 deletion test/cases/setUsername.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 0 additions & 2 deletions test/cases/voteOnSponsorTime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
})
Expand All @@ -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();
})
Expand Down

0 comments on commit 109578a

Please sign in to comment.