gpt4 book ai didi

javascript - Jasmine.js 比较数组

转载 作者:IT老高 更新时间:2023-10-28 13:14:47 25 4
gpt4 key购买 nike

jasmine.js中有没有办法检查两个数组是否相等,例如:

arr = [1, 2, 3]
expect(arr).toBe([1, 2, 3])
expect(arr).toEqual([1, 2, 3])

似乎都不起作用。

最佳答案

刚刚进行了测试,它适用于 toEqual

请找到我的测试:

http://jsfiddle.net/7q9N7/3/

describe('toEqual', function() {
it('passes if arrays are equal', function() {
var arr = [1, 2, 3];
expect(arr).toEqual([1, 2, 3]);
});
});

仅供引用:

toBe() versus toEqual(): toEqual() checks equivalence. toBe(), on the other hand, makes sure that they're the exact same object.

关于javascript - Jasmine.js 比较数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15717844/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com