fix(auth): update error message in sign-in-up service test (#10056)

Revised exception message for better clarity when a user is not part of
the workspace. Adjusts test expectations to match the updated error
output.
This commit is contained in:
Antoine Moreaux
2025-02-06 16:33:41 +01:00
committed by GitHub
parent f40d7e2ba8
commit 5b79ac771c

View File

@ -301,16 +301,13 @@ describe('SignInUpService', () => {
};
jest.spyOn(environmentService, 'get').mockReturnValue(false);
jest
.spyOn(userWorkspaceService, 'addUserToWorkspace')
.mockResolvedValue({} as User);
jest
.spyOn(userWorkspaceService, 'checkUserWorkspaceExists')
.mockResolvedValue(null);
await expect(() => service.signInUp(params)).rejects.toThrow(
new AuthException(
'Workspace is not ready to welcome new members',
'User is not part of the workspace',
AuthExceptionCode.FORBIDDEN_EXCEPTION,
),
);