Variable userUpdateFixturesConst
userUpdateFixtures: {
validProfileUpdate: {
username: string;
countryCode: string;
profilePictureUrl: string;
};
emailUpdate: { email: string };
passwordUpdate: { currentPassword: string; newPassword: string };
deactivationUpdate: { isActive: boolean };
roleUpdate: { role: "content_creator" };
} = ...
Type declaration
validProfileUpdate: { username: string; countryCode: string; profilePictureUrl: string }
emailUpdate: { email: string }
passwordUpdate: { currentPassword: string; newPassword: string }
deactivationUpdate: { isActive: boolean }
roleUpdate: { role: "content_creator" }
User update data fixtures (for testing user updates)