Skip to content

Commit

Permalink
#98 fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-serb committed Jul 15, 2023
1 parent 2edd401 commit 3244e8c
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions tests/helpers.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,6 @@ describe('[Helpers] function getRandomInteger', () => {
expect(typeof number).toBe('number');
});

test('Generate number with params', () => {
const min = 0;
const max = 10;

const number = getRandomInteger(min, max)

expect(typeof number).toBe('number');
expect(number).toBeGreaterThan(min);
expect(number).toBeLessThan(max);
});

test('Generate many time number with params', () => {
const min = 0;
const max = 10;
Expand Down

0 comments on commit 3244e8c

Please sign in to comment.