Update tests. remove converted test for the time being

This commit is contained in:
Sam El-Husseini
2018-04-21 10:45:02 -07:00
parent ff892dbcb4
commit 6ac64f0e3d
11 changed files with 36 additions and 32 deletions

View File

@ -14,4 +14,8 @@ namespace Math {
export function randomBoolean(): boolean {
return Math.random() >= 0.5;
}
export function randomInt(max: number): number {
return Math.floor(Math.random() * max);
}
}