finish tests and remove extra console.logs

This commit is contained in:
Michael C
2021-10-19 23:06:47 -04:00
parent 4ee35d3cd4
commit d0deb6fe27
4 changed files with 36 additions and 10 deletions

View File

@@ -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);