REST Service for POPCORN - ILIAS
alex
2025-10-24 df46e7171c2dd42b3084dffb19e705a54d1731ba
test/testDeleteUser.js
@@ -16,7 +16,7 @@
   })
   afterEach(async function () {
      // await deleteUser(lastUserId)
      await deleteUser(lastUserId).catch(err => console.log(err.message))
   })
@@ -41,7 +41,7 @@
async function deleteUser (usr_id) {
   const res2 = await libIlias.deleteUser(usr_id)
   console.log(res2)
   expect(res2).to.have.property("status").and.to.equal("ok")
   expect(res2).to.have.property("command").and.to.equal("deleteUser")
   // console.log(res2)
   // expect(res2).to.have.property("status").and.to.equal("ok")
   // expect(res2).to.have.property("command").and.to.equal("deleteUser")
}