Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
84
rated 0 times [  90] [ 6]  / answers: 1 / hits: 133950  / 10 Years ago, fri, june 6, 2014, 12:00:00

I want to confirm that a value is a decimal (or 0), so the number should be greater than or equal to zero and less than 1.



describe('percent',function(){  

it('should be a decimal', function() {

var percent = insights.percent;
expect(percent).toBeGreaterThan(0);
expect(percent).toBeLessThan(1);

});

});


How do I mimic >= 0 ?


More From » tdd

 Answers
8

You just need to run the comparison operation first, and then check if it's truthy.



describe('percent',function(){
it('should be a decimal',function(){

var percent = insights.percent;

expect(percent >= 0).toBeTruthy();
expect(percent).toBeLessThan(1);

});
});

[#70675] Thursday, June 5, 2014, 10 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
americar

Total Points: 631
Total Questions: 107
Total Answers: 103

Location: Luxembourg
Member since Tue, Jan 25, 2022
2 Years ago
;