Skip to content

Commit

Permalink
Merge pull request #99 from eugene-serb/dev
Browse files Browse the repository at this point in the history
Release 1.0.22
  • Loading branch information
eugene-serb authored Jul 15, 2023
2 parents 5c00f5d + 3244e8c commit 5144aee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurora-game-engine",
"version": "1.0.21",
"version": "1.0.22",
"description": "Aurora game engine for creating 1D and 2D games in JavaScript",
"keywords": [
"game-engine",
Expand Down
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 5144aee

Please sign in to comment.