gpt4 book ai didi

javascript - 为什么 ava 无法比较对象列表和对象文字列表?

转载 作者:行者123 更新时间:2023-12-03 06:06:14 25 4
gpt4 key购买 nike

我正在使用deepEqual断言,但我的测试失败

测试

test('should return list of printers', t => {
const clipboard = filter.asClipboardContent(scan);

t.is(clipboard, [
{hostname: '10.0.1.1', port: '9100', description: 'HP 5020-NL'},
{hostname: '10.0.1.8', port: '9100', description: 'Brother 4002'}
]);
}

失败输出

 t.deepEqual(clipboard, [{ hostname: '10.0.1.1', port: '9100', description: 'HP 5020-NL' }, { hostname: '10.0.1.8', port: '9100', description: 'Brother 4002' }])
|
[Object{hostname:"10.0.1.1",port:9100,description:"HP 5020-NL"},Object{hostname:"10.0.1.8",port:9100,description:"Brother 4002"}]

问题

如何解决这个问题?

最佳答案

我遇到了类型问题,port 值一侧是 string,另一侧是 integer

test('should return list of printers', t => {
const expected = [
{hostname: '10.0.1.1', port: 9100, description: 'HP 5020-NL'},
{hostname: '10.0.1.8', port: 9100, description: 'Brother 4002'}
];

const clipboard = filter.asClipboardContent(scan);

t.deepEqual(clipboard, expected);
});

在这种情况下,两个对象是相同的。

关于javascript - 为什么 ava 无法比较对象列表和对象文字列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39534632/

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