1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-05-08 01:15:49 +02:00

fix e2e notifications specs setup

This commit is contained in:
Tymoteusz Czech 2023-03-28 14:25:33 +02:00
parent 0a0e083381
commit 583eb63e75
No known key found for this signature in database
GPG Key ID: 133555230D88D75F

View File

@ -41,7 +41,7 @@ const createUser = () => {
});
};
const updateUserPassword = async (id: number) => {
const updateUserPassword = (id: number) =>
cy.request(
'POST',
`${baseUrl}/api/admin/user-admin/${id}/change-password`,
@ -49,7 +49,6 @@ const updateUserPassword = async (id: number) => {
password,
}
);
};
const addUserToProject = async (id: number) => {
cy.request(