mirror of
https://github.com/MartinKral/Slash-The-Hordes
synced 2025-10-09 08:36:14 +00:00
Pauser, game modal launcher
This commit is contained in:
13
tests/utils/arrayUtils.test.ts
Normal file
13
tests/utils/arrayUtils.test.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { shuffle } from "../../assets/Scripts/Services/Utils/ArrayUtils";
|
||||
|
||||
test("shuffle shuffles the array", () => {
|
||||
const array: number[] = [0, 1, 2, 3, 4, 5, 6];
|
||||
const shuffledArray: number[] = shuffle(array);
|
||||
|
||||
let positionsShuffled = 0;
|
||||
for (let i = 0; i < shuffledArray.length; i++) {
|
||||
if (shuffledArray[i] != i) positionsShuffled++;
|
||||
}
|
||||
|
||||
expect(positionsShuffled).toBeGreaterThan(3);
|
||||
});
|
Reference in New Issue
Block a user