jest (4) : Setup and test block scope
테스트를 구동하기 전에 모듈을 임포트하는 등의 작업 혹은 테스트를 구동한 후에 처리해야 하는 작업 등 테스트 전, 후에 작업을 해야할 경우가 종종 있습니다. setup 테스트 전, 후에 트리거 되는 코드 조각들은 (before | after)(All | Each) 내부에 넣으면 됩니다. beforeAll, afterAll In some cases, you only need to do setup once, at the beginning of a file. This can be especially bothersome when the setup is asynchronous, so you can't do it inline. Jest provides beforeAll and afterAll to handle th..