Paracetamol.test.js๐งช| #5: ์๋ฐ์คํฌ๋ฆฝํธ ์ฝ๋ฉ ํ ์คํธ
2916 ๋จ์ด webdevtestingspanishjavascript
ยฟCuรกl es la diferencia entre test A y test B?
๋์ด๋: Bรกsico
// arr.test.js
const f = (arr) => {
return arr.some((item) => {
return item > 3;
});
};
//test A
test("[1,2,3,4,5] => true", () => {
const res = f([1, 2, 3, 4, 5]);
expect(res).toBeTruthy();
});
//test B
test("[1,2,3,4,5] => true", () => {
const res = f([1, 2, 3, 4, 5]);
expect(res).toBe(true);
});
A.
test A y test B son iguales, ambos test pasan
B. test B no pasa las pruebas, test A si pasa las pruebas
C. toBeTruthy no es un matcher de jest
D. Ninguna de las anteriores
Respuesta en el primer comentario.
Reference
์ด ๋ฌธ์ ์ ๊ดํ์ฌ(Paracetamol.test.js๐งช| #5: ์๋ฐ์คํฌ๋ฆฝํธ ์ฝ๋ฉ ํ ์คํธ), ์ฐ๋ฆฌ๋ ์ด๊ณณ์์ ๋ ๋ง์ ์๋ฃ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋งํฌ๋ฅผ ํด๋ฆญํ์ฌ ๋ณด์๋ค https://dev.to/duxtech/paracetamoltestjs-6-testea-este-codigo-javascript-2ka4ํ ์คํธ๋ฅผ ์์ ๋กญ๊ฒ ๊ณต์ ํ๊ฑฐ๋ ๋ณต์ฌํ ์ ์์ต๋๋ค.ํ์ง๋ง ์ด ๋ฌธ์์ URL์ ์ฐธ์กฐ URL๋ก ๋จ๊ฒจ ๋์ญ์์ค.
์ฐ์ํ ๊ฐ๋ฐ์ ์ฝํ ์ธ ๋ฐ๊ฒฌ์ ์ ๋ (Collection and Share based on the CC Protocol.)
์ข์ ์นํ์ด์ง ์ฆ๊ฒจ์ฐพ๊ธฐ
๊ฐ๋ฐ์ ์ฐ์ ์ฌ์ดํธ ์์ง
๊ฐ๋ฐ์๊ฐ ์์์ผ ํ ํ์ ์ฌ์ดํธ 100์ ์ถ์ฒ ์ฐ๋ฆฌ๋ ๋น์ ์ ์ํด 100๊ฐ์ ์์ฃผ ์ฌ์ฉํ๋ ๊ฐ๋ฐ์ ํ์ต ์ฌ์ดํธ๋ฅผ ์ ๋ฆฌํ์ต๋๋ค