TDD
// sample.text.ts
// ๋ ์ซ์๋ฅผ ๋ํ๋ test ์ฝ๋ ์์ฑ
text('add', () => {
expect(add(1, 2)).toBe(3)
})
function add(x, y) {
return x + y
}TDD ๊ณผ์
TDD๋ฅผ ํด์ผํ๋ ์ด์
TDD ์ฐ์ตํด๋ณด๊ธฐ
Last updated