在Jasmine中,有toBeGreaterThan
和toBeLessThan
匹配器。
如果我想检查特定范围内的整数值怎么办?有什么像toBeInBetween
匹配器吗?
目前,我可以通过两个单独的expect
来电解决问题:
var x = 3;
expect(x).toBeGreaterThan(1);
expect(x).toBeLessThan(10);
答案 0 :(得分:13)
您可以运行布尔比较并断言结果为true
:
expect(x > 1 && x < 10).toBeTruthy();
此外,jasmine-matchers
引入了toBeWithinRange()
自定义匹配器:
expect(x).toBeWithinRange(2, 9); // range borders are included