编程语言
首页 > 编程语言> > javascript – 使用Jasmine检查两个边界(在匹配器之间)

javascript – 使用Jasmine检查两个边界(在匹配器之间)

作者:互联网

在茉莉花中,有很多人可以和很多人一起去比赛.

如果我想检查特定范围内的整数值怎么办?有什么比toBeInBetween matcher?

目前,我可以在两个单独的期望调用中解决它:

var x = 3;

expect(x).toBeGreaterThan(1);
expect(x).toBeLessThan(10);

解决方法:

您可以运行布尔比较并断言结果为true:

expect(x > 1 && x < 10).toBeTruthy();

此外,还有由jasmine-matchers引入的BeWithinRange()自定义匹配器:

expect(x).toBeWithinRange(2, 9);  // range borders are included 

标签:javascript,jasmine,testing,assertions,jasmine-matchers
来源: https://codeday.me/bug/20191004/1854189.html