Files
medusa-store/integration-tests/helpers/client-authentication.ts.txt
Riqwan Thamir 0573bb924a chore: Remove typeORM (#9005)
* chore: rename js files to txt

* chore: rename ts files to txt

* chore: delete environment helpers

* chore: convert global setup & teardown to txt

* chore: rename helper js/ts files to txt

* chore: rename seeder js/ts files to txt

* chore: remove typeorm

* chore: reintroduce used helpers
2024-09-05 15:45:30 +02:00

21 lines
463 B
Plaintext

const AUTH_COOKIE = {}
export async function getClientAuthenticationCookie(
api,
email = null,
password = null
) {
const user = {
email: email ?? "test@medusajs.com",
password: password ?? "test",
}
if (AUTH_COOKIE[user.email]) {
return AUTH_COOKIE[user.email]
}
const authResponse = await api.post("/store/auth", user)
AUTH_COOKIE[user.email] = authResponse.headers["set-cookie"][0].split(";")
return AUTH_COOKIE[user.email]
}