Revert failing test.
This commit is contained in:
parent
8944b0908b
commit
cf57c7a0d0
|
@ -36,7 +36,26 @@ describe("UserDB", () => {
|
||||||
describe("save", () => {
|
describe("save", () => {
|
||||||
describe("create", () => {
|
describe("create", () => {
|
||||||
it("creating a new user will persist it", async () => {
|
it("creating a new user will persist it", async () => {
|
||||||
throw new Error("oh no")
|
const email = generator.email({})
|
||||||
|
const user: User = structures.users.user({
|
||||||
|
email,
|
||||||
|
tenantId: config.getTenantId(),
|
||||||
|
})
|
||||||
|
|
||||||
|
await config.doInTenant(async () => {
|
||||||
|
const saveUserResponse = await db.save(user)
|
||||||
|
|
||||||
|
const persistedUser = await db.getUserByEmail(email)
|
||||||
|
expect(persistedUser).toEqual({
|
||||||
|
...user,
|
||||||
|
_id: saveUserResponse._id,
|
||||||
|
_rev: expect.stringMatching(/^1-\w+/),
|
||||||
|
password: expect.not.stringMatching(user.password!),
|
||||||
|
status: UserStatus.ACTIVE,
|
||||||
|
createdAt: Date.now(),
|
||||||
|
updatedAt: new Date().toISOString(),
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
it("the same email cannot be used twice in the same tenant", async () => {
|
it("the same email cannot be used twice in the same tenant", async () => {
|
||||||
|
|
Loading…
Reference in New Issue