Files
SCM-Manager/scm-ui/ui-webapp/src/modules/changePassword.test.ts

26 lines
636 B
TypeScript
Raw Normal View History

import fetchMock from "fetch-mock";
import { changePassword, CONTENT_TYPE_PASSWORD_CHANGE } from "./changePassword";
describe("change password", () => {
const CHANGE_PASSWORD_URL = "/me/password";
const oldPassword = "old";
const newPassword = "new";
afterEach(() => {
fetchMock.reset();
fetchMock.restore();
});
it("should update password", done => {
fetchMock.put("/api/v2" + CHANGE_PASSWORD_URL, 204, {
headers: {
"content-type": CONTENT_TYPE_PASSWORD_CHANGE
}
});
2019-10-21 10:57:56 +02:00
changePassword(CHANGE_PASSWORD_URL, oldPassword, newPassword).then(content => {
done();
});
});
});