Test files linted
This commit is contained in:
@ -8,5 +8,5 @@ test('Returns the n minimum elements from the provided array', () => {
|
||||
expect(minN([1, 2, 3])).toEqual([1]);
|
||||
});
|
||||
test('Returns the n minimum elements from the provided array', () => {
|
||||
expect(minN([1, 2, 3], 2), ).toEqual([1, 2]);
|
||||
expect(minN([1, 2, 3], 2)).toEqual([1, 2]);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user