-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: Express에 Jest 설치 및 몇 가지 단위 테스트 작성 #227
Merged
bbearcookie
merged 9 commits into
chore/224-express-directory
from
feature/226-express-jest
Jan 2, 2024
Merged
feature: Express에 Jest 설치 및 몇 가지 단위 테스트 작성 #227
bbearcookie
merged 9 commits into
chore/224-express-directory
from
feature/226-express-jest
Jan 2, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bbearcookie
force-pushed
the
feature/226-express-jest
branch
from
January 1, 2024 12:11
282ef82
to
0ed25fe
Compare
bbearcookie
added a commit
that referenced
this pull request
Jan 2, 2024
* feat: 컨트롤러의 req 객체를 검증하는 validator 작성 * feat: signup validation 정리 * refactor: 이전 라우터 _router_legacy 로 변경 * feat: auth controller 틀 구성 * feat: 응답 에러 클래스 작성 * feat: AuthorizationFilter 틀 작성 * style: 사라질 파일 언더바 및 주석처리 * feat: 각 도메인별 디렉토리 구조 구성 * feat: 회원가입시 컬럼 생성 로직 작성 * chore: jsonwebtoken 설치 * feat: 액세스 토큰 발급 로직 작성 * feat: 로그인 기능 구현 * feat: authorizationFilter 구현 * feat: 로그인 확인 기능 구현 * fix: 로그인 확인시 없는 유저에 대한 404 대응 * feat: 비밀번호 변경 기능 구현 * chore: 각각 service, repository, validator 틀 구성 * style: 주석 수정 * feature: Express에 Jest 설치 및 몇 가지 단위 테스트 작성 (#227) * chore: jest 설치 및 설정 * chore: 테스트 파일에서 path alias 적용 * chore: 테스트 파일에서 .env 파일의 내용 적용 * test: authService 로그인 단위 테스트 작성 * test: authService 단위 테스트 작성 * test: validationFilter 단위 테스트 작성 * test: authorizationFilter 단위 테스트 작성 * style: 텍스트 변경 * docs: readme 팀 소개 링크 수정
bbearcookie
added a commit
that referenced
this pull request
Jan 2, 2024
* chore: slack 패키지의 @types 모듈을 devDependencies로 변경 * chore: 추후 제거될 디렉토리에 언더바 접두사를 붙힘 * feature: Express 디렉토리 구조 정리 및 auth 관련 기능 구현 (#225) * feat: 컨트롤러의 req 객체를 검증하는 validator 작성 * feat: signup validation 정리 * refactor: 이전 라우터 _router_legacy 로 변경 * feat: auth controller 틀 구성 * feat: 응답 에러 클래스 작성 * feat: AuthorizationFilter 틀 작성 * style: 사라질 파일 언더바 및 주석처리 * feat: 각 도메인별 디렉토리 구조 구성 * feat: 회원가입시 컬럼 생성 로직 작성 * chore: jsonwebtoken 설치 * feat: 액세스 토큰 발급 로직 작성 * feat: 로그인 기능 구현 * feat: authorizationFilter 구현 * feat: 로그인 확인 기능 구현 * fix: 로그인 확인시 없는 유저에 대한 404 대응 * feat: 비밀번호 변경 기능 구현 * chore: 각각 service, repository, validator 틀 구성 * style: 주석 수정 * feature: Express에 Jest 설치 및 몇 가지 단위 테스트 작성 (#227) * chore: jest 설치 및 설정 * chore: 테스트 파일에서 path alias 적용 * chore: 테스트 파일에서 .env 파일의 내용 적용 * test: authService 로그인 단위 테스트 작성 * test: authService 단위 테스트 작성 * test: validationFilter 단위 테스트 작성 * test: authorizationFilter 단위 테스트 작성 * style: 텍스트 변경 * docs: readme 팀 소개 링크 수정
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🧩 이슈 번호
✅ 작업 사항
ts-jest
를 설치했어요.@
로 시작하는 path alias를 테스트 파일에서 사용할 수 있도록 설정했어요.,👩💻 공유 포인트 및 논의 사항
우선
yarn slack test
명령어를 입력하면 테스트를 수행하도록 세팅 해 놓았는데, CI 단계에서 테스트를 수행하는 워크플로도 작성해둘지 고민이에요.머지는
main
<-chore/213-typescript-version
<-chore/224-express-directory
<-feature/226-express-jest
순서로 진행할 예정입니다!