Предположим, у меня есть эта функция
function changeFooBarToOne(foo) {
foo.bar = 1;
}
Как проверить, изменилось ли значение на 1?
describe('changeFooBarToOne', () => {
it('modifies the bar property value to 1', () => {
const foo = { bar: 0 };
// call the expect and evaluate foo to equal { bar: 1 }
})
})