假设我有这个功能
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 }
})
})
答案 0 :(得分:1)
不要忘记,JavaScript对象是引用类型。
./test.native mycode.bc