1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

fix tests

This commit is contained in:
Martin McKeaveney 2020-12-07 21:11:07 +00:00
parent 0e837899a4
commit 2123c06df5
2 changed files with 3 additions and 5 deletions

View file

@ -48,7 +48,6 @@ exports.create = async function(ctx) {
ctx.body = {
_rev: response.rev,
email,
name,
}
} catch (err) {
if (err.status === 409) {

View file

@ -48,7 +48,7 @@ describe("/users", () => {
})
it("should apply authorization to endpoint", async () => {
await createUser(request, appId, "brenda", "brendas_password")
await createUser(request, appId, "brenda@brenda.com", "brendas_password")
await testPermissionsForEndpoint({
request,
method: "GET",
@ -62,12 +62,11 @@ describe("/users", () => {
})
describe("create", () => {
it("returns a success message when a user is successfully created", async () => {
const res = await request
.post(`/api/users`)
.set(defaultHeaders(appId))
.send({ name: "Bill", email: "bill@bill.com", password: "bills_password", accessLevelId: BUILTIN_LEVEL_IDS.POWER })
.send({ email: "bill@bill.com", password: "bills_password", accessLevelId: BUILTIN_LEVEL_IDS.POWER })
.expect(200)
.expect('Content-Type', /json/)
@ -79,7 +78,7 @@ describe("/users", () => {
await testPermissionsForEndpoint({
request,
method: "POST",
body: { name: "brandNewUser", email: "brandNewUser@user.com", password: "yeeooo", accessLevelId: BUILTIN_LEVEL_IDS.POWER },
body: { email: "brandNewUser@user.com", password: "yeeooo", accessLevelId: BUILTIN_LEVEL_IDS.POWER },
url: `/api/users`,
appId: appId,
permName1: BUILTIN_PERMISSION_NAMES.ADMIN,