Skip to content

Commit

Permalink
remove tests
Browse files Browse the repository at this point in the history
  • Loading branch information
manusant committed Feb 25, 2024
1 parent 229e138 commit 673987c
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions test/range.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,6 @@ describe('Range', () => {
expect(result2).toBe(false);
});
});

describe('lessThanOrEqual', () => {
test('checks if a value is less than or equal to the end of the range', () => {
const result1 = Range.lessThanOrEqual(3, 5);
const result2 = Range.lessThanOrEqual(6, 5);
expect(result1).toBe(true);
expect(result2).toBe(false);
});
});

describe('greaterThanOrEqual', () => {
test('checks if a value is greater than or equal to the start of the range', () => {
const result1 = Range.greaterThanOrEqual(3, 1);
const result2 = Range.greaterThanOrEqual(0, 1);
expect(result1).toBe(true);
expect(result2).toBe(false);
});
});
});

describe('Global Functions', () => {
Expand Down

0 comments on commit 673987c

Please sign in to comment.