gpt4 book ai didi

javascript - Spec 没有期望 - Jasmine 测试回调函数

转载 作者:可可西里 更新时间:2023-11-01 02:18:23 25 4
gpt4 key购买 nike

我有一个使用 d3 计时器 调用的方法。每当调用该方法时,该方法都会发出一个具有几个值的对象。其中一个值随时间增加。我想编写一个测试来检查值是否按升序排列(即是否随时间增加)。

因此,为了解决这个问题,在我的测试中,我订阅了事件发射器,并且在订阅内部,我将接收到的对象推送到本地数组中。然后,我期望 array[i] 小于 array[i+1]。我认为我的逻辑是完全正确的,但我不确定为什么我从 Jasmine 那里收到错误消息说 the spec has no expectations 即使我有一个。

代码如下:

let x = d3.timer((elapsed) => { 
this.method(); // call the function
if(elapsed >= 500) {
x.stop(); // stops the timer.
}
});

method(elapsed) {
// do something
if(elapsed > 500) {
this.output.emit({x: somevalue, y: somevalue, f: increasingvalue });
}
}

Jasmine 规范:

it('my spec', inject([JumpService], (service: JumpService) =>{
array = [];
//service calls the method
service.output.subscribe(e => {
array.push(e);
// A console statement here will give me the length and the object pushed.
for(let i = 0; i< array.length - 1; i++) {
expect(array[i].f).toBeLessThan(array[i+1].f);
}

});

}));

我是不是做错了什么?我该如何应对这种情况?请指导我正确的方向。

谢谢。

最佳答案

一般来说,在测试异步回调函数时,在 promise 解决后期待测试的输出总是很重要的。您可以将 Angular 测试床框架的 tick()fakeAsync() 一起使用,或者您可以简单地回退到 Jasmine 测试异步方法的一般方法,方法是使用 完成()

使用done():

it('my spec', (done) => {
array = [];
service.output.subscribe(e => {
array.push(e);
for(let i = 0; i< array.length - 1; i++) {
expect(array[i].f).toBeLessThan(array[i+1].f);
}
done();
});
});

希望这个回答对您有所帮助。

注意:我在 fakeAsync()tick() 方面运气不佳,因此我没有将其包含在答案中。对此感到抱歉。

关于javascript - Spec 没有期望 - Jasmine 测试回调函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45578981/

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