Testing trong Javascript với Jest (Phần 1) (ok)
https://viblo.asia/p/testing-trong-javascript-voi-jest-phan-1-LzD5d2JwZjY
Cài đặt
npm install --save-dev jest
hoặc
yarn add --dev jest{
"scripts": {
"test": "jest"
}
}// file abc.js
const add = (a, b) => a + b;
module.exports = add;
// file abc.test.js để cùng folder với file abc.js
const add = require('./abc');
test('add two number', () => {
expect(add(2, 2)).toBe(4);
});
Matchers
toBe
toEqual
Truthiness
Numbers
Strings
Arrays
Exceptions
Tổng kết
Last updated


