We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d655dd commit b2be955Copy full SHA for b2be955
tests/project-1.test.js
@@ -32,7 +32,7 @@ describe('Project 1', () => {
32
});
33
34
describe('lessThanNinety(num)', () => {
35
- it('should return true if the argument is greater than fifty', () => {
+ it('should return true if the argument is less than ninety', () => {
36
expect(exercises.lessThanNinety(15)).toBe(true);
37
expect(exercises.lessThanNinety(90)).toBe(false);
38
expect(exercises.lessThanNinety(100)).toBe(false);
0 commit comments