๋ชฉ๋กjest (1)
๐ค ์์งlog ๐ค
[CI/CD study] - 12. code coverage ( Jest ) ์ค์น ํ
์คํธ
code coverage ์ค next, react์ ์ฐ๊ด์ฑ์ด ๋์ Jest๋ฅผ ์ค์นํด๋ณด๊ฒ ์ต๋๋ค. npm install --save-dev jest Jest ์ค์น ๊ทธ๋ค์ subtraction.js ์ด๋ผ๋ ํ์ผ ์์ฑ function subtraction(a, b) { return a - b; } module.exports = subtraction; ํ์ผ์์ ์ฝ๋๋ฅผ ์์ฑ ๊ทธ ํ subtraction.test.js ์ด๋ผ๋ ํ์ผ ์์ฑ const subtraction = require('./subtraction'); test('subtracts 4 - 2 to equal 2', () => { expect(subtraction(4, 2)).toBe(2); }); ์ฝ๋ ์์ฑ { "scripts": { "test": "j..
๐ DevOps
2022. 10. 14. 23:49