We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
문제 정의 model 테스트를 작성하는 과정에서 service에 when 을 사용하는 것이 아닌, model에 직접 stubbing 해주는 모습을 확인할 수 있다. 아래는 문제가 되는 코드이다.
when(model.postUserProfile()).thenThrow(UnauthorizedException()); model.postUserProfile().catchError((err) => { expect(err is Navigate, true), expect((err as Navigate).route, '/loginMethod') });
앞으로 할 일
The text was updated successfully, but these errors were encountered:
No branches or pull requests
문제 정의
model 테스트를 작성하는 과정에서 service에 when 을 사용하는 것이 아닌,
model에 직접 stubbing 해주는 모습을 확인할 수 있다.
아래는 문제가 되는 코드이다.
앞으로 할 일
The text was updated successfully, but these errors were encountered: