Additional tests

This commit is contained in:
Angelos Chalaris
2018-11-10 13:38:34 +02:00
parent 39ff17ae2a
commit f876560845
6 changed files with 45 additions and 3 deletions

View File

@ -14,3 +14,6 @@ test('Generates all permutations of an array', () => {
[5, 33, 1]
]);
});
test('Generates all permutations of an array', () => {
expect(permutations([1])).toEqual([1]);
});