68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import { IAuthModuleService, IUserModuleService } from "@medusajs/types"
|
|
import { initDb, useDb } from "../../../environment-helpers/use-db"
|
|
|
|
import { AxiosInstance } from "axios"
|
|
import { ModuleRegistrationName } from "@medusajs/modules-sdk"
|
|
import { createAdminUser } from "../../helpers/create-admin-user"
|
|
import { getContainer } from "../../../environment-helpers/use-container"
|
|
import path from "path"
|
|
import { startBootstrapApp } from "../../../environment-helpers/bootstrap-app"
|
|
import { useApi } from "../../../environment-helpers/use-api"
|
|
|
|
jest.setTimeout(50000)
|
|
|
|
const env = { MEDUSA_FF_MEDUSA_V2: true }
|
|
const adminHeaders = {
|
|
headers: { "x-medusa-access-token": "test_token" },
|
|
}
|
|
|
|
describe("POST /admin/invites/:id/resend", () => {
|
|
let dbConnection
|
|
let appContainer
|
|
let shutdownServer
|
|
let userModuleService: IUserModuleService
|
|
|
|
beforeAll(async () => {
|
|
const cwd = path.resolve(path.join(__dirname, "..", ".."))
|
|
dbConnection = await initDb({ cwd, env } as any)
|
|
shutdownServer = await startBootstrapApp({ cwd, env })
|
|
appContainer = getContainer()
|
|
userModuleService = appContainer.resolve(ModuleRegistrationName.USER)
|
|
})
|
|
|
|
beforeEach(async () => {
|
|
await createAdminUser(dbConnection, adminHeaders)
|
|
})
|
|
|
|
afterAll(async () => {
|
|
const db = useDb()
|
|
await db.shutdown()
|
|
await shutdownServer()
|
|
})
|
|
|
|
afterEach(async () => {
|
|
const db = useDb()
|
|
await db.teardown()
|
|
})
|
|
|
|
it("should resend a single invite", async () => {
|
|
const invite = await userModuleService.createInvites({
|
|
email: "potential_member@test.com",
|
|
})
|
|
|
|
const api = useApi()! as AxiosInstance
|
|
|
|
const response = await api.post(
|
|
`/admin/invites/${invite.id}/resend`,
|
|
{},
|
|
adminHeaders
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
expect(response.data.invite.token).not.toEqual(invite.token)
|
|
expect(response.data.invite).toEqual(
|
|
expect.objectContaining({ email: "potential_member@test.com" })
|
|
)
|
|
})
|
|
})
|