gpt4 book ai didi

javascript - 预期 '> ' 等于 Jasmine 中的 '> '

转载 作者:数据小太阳 更新时间:2023-10-29 05:57:24 25 4
gpt4 key购买 nike

我正在测试 jQuery 终端,但出现错误:

Expected '> ' to equal '> '.

测试时:

$(function() {
describe('Terminal plugin', function() {
describe('terminal create terminal destroy', function() {
var term = $('<div id="term"></div>').appendTo('body').terminal();
it('should have default prompt', function() {
var prompt = term.find('.prompt');
expect(prompt.html()).toEqual("<span>&gt;&nbsp;</span>");
expect(prompt.text()).toEqual('> ');
});
});
});
});

它们是相同的值我只是将它复制到控制台并替换 to equal通过 =====它返回 true .

最佳答案

  不是“常规”空间,因此 "> ""> " 不等价。

相反,尝试 expect(prompt.text()).toEqual('>\xA0'),这是一个不间断空格的十六进制代码(这比放置一个更好的主意那里有实际的不间断空间!)

关于javascript - 预期 '> ' 等于 Jasmine 中的 '> ',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34464562/

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