https://inpa.tistory.com/entry/JEST-📚-모킹-mocking-jestfn-jestspyOn
https://github.com/boostcampwm-2024/web27-Preview/pull/135
코드 보기코드 보기describe: 관련 테스트들을 그룹화test/it: 개별 테스트 정의expect: 테스트 결과 검증describe('테스트 그룹', () => {
it('테스트 기능 1', () => {
expect(actualValue).toBe(expectedValue);
});
it('테스트 기능 2', () => {
expect(actualValue).toEqual(expectedValue);
});
});