Skip to content

Commit 32be0a6

Browse files
committed
[GILJOB-27] env: Jest를 사용하기 위해 의존 모듈을 설치하고 Jest 개발 환경을 구성한다.
1 parent cda2f58 commit 32be0a6

File tree

4 files changed

+5608
-2214
lines changed

4 files changed

+5608
-2214
lines changed

Diff for: .eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ node_modules
22
config
33
public
44
@types
5+
jest.*

Diff for: jest.config.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
setupFilesAfterEnv: [
3+
'given2/setup',
4+
'jest-plugin-context/setup',
5+
],
6+
testEnvironment: 'jsdom',
7+
};

0 commit comments

Comments
 (0)