Skip to content

Commit

Permalink
style: 텍스트 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
bbearcookie committed Dec 31, 2023
1 parent f68d0e7 commit 5a68f58
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/slack/src/domains/auth/auth.service.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ describe('회원가입', () => {
expect(user.userId).toBe(mockUser.id);
});

it('이미 존재하는 회원일 경우 예외 발생', async () => {
it('이미 존재하는 회원일 경우 예외가 발생한다', async () => {
UserRepository.findOneBy = jest.fn().mockResolvedValueOnce(mockUser);

expect(authService.signUp(mockUser.username, mockUser.password, mockUser.name)).rejects.toThrow();
});

it('생성된 유저 정보를 찾을 수 없을 경우 예외 발생', async () => {
it('생성된 유저 정보를 찾을 수 없을 경우 예외가 발생한다', async () => {
UserRepository.findUserByUsername = jest.fn().mockResolvedValueOnce(null);

expect(authService.signUp(mockUser.username, mockUser.password, mockUser.name)).rejects.toThrow();
Expand All @@ -38,13 +38,13 @@ describe('로그인', () => {
expect(user.userId).toBe(mockUser.id);
});

it('존재하지 않는 회원일 경우 예외 발생', async () => {
it('존재하지 않는 회원일 경우 예외가 발생한다', async () => {
UserRepository.findOneBy = jest.fn().mockResolvedValueOnce(null);

expect(authService.signIn('아이디', '12341234')).rejects.toThrow();
});

it('비밀번호가 일치하지 않을 경우 예외 발생', async () => {
it('비밀번호가 일치하지 않을 경우 예외가 발생한다', async () => {
UserRepository.findOneBy = jest.fn().mockResolvedValueOnce(mockUser);

expect(authService.signIn('아이디', '11112222')).rejects.toThrow();
Expand All @@ -62,15 +62,15 @@ describe('로그인 확인', () => {
expect(user.userId).toBe(mockUser.id);
});

it('DB에 유저 정보가 없을 경우 예외 발생', async () => {
it('DB에 유저 정보가 없을 경우 예외가 발생한다', async () => {
UserRepository.findOneBy = jest.fn().mockResolvedValueOnce(null);

expect(authService.signCheck(mockUser.id)).rejects.toThrow();
});
});

describe('비밀번호 변경', () => {
it('DB에 유저 정보가 없을 경우 예외 발생', async () => {
it('DB에 유저 정보가 없을 경우 예외가 발생한다', async () => {
UserRepository.findOneBy = jest.fn().mockResolvedValueOnce(null);

expect(authService.changePassword(1, '12341234')).rejects.toThrow();
Expand Down

0 comments on commit 5a68f58

Please sign in to comment.