Уровень новичка - модульное тестирование
Вот функция
export function toHex(number) {
const nstr = number.toString(16);
if (nstr.length % 2) {
return `0${nstr}`;
}
return nstr;
Можно выяснить, является ли функция истинной или нет, запустив следующий код модульного тестирования:
// testing new function
describe('toHex', () => { //mocking the method
test('Testing Function toHex ', () => { // declaring the method
const str = 14 // initial value
const actual = toHex(str) // calculate the value
expect(actual).toMatchSnapshot(); // checking whether is true
})
});
Теперь, как я могу добавить разные сценарии и сделать следующую функцию для передачи / неудачи Спасибо