Skip to content

Commit 283e018

Browse files
committed
update tests
1 parent c93af36 commit 283e018

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

test/sort.spec.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,4 @@ describe('immutable-sort', () => {
2626
const resultArray = sort(stringArray);
2727
expect(resultArray).to.eql(['Beluga', 'Blue', 'Humpback']);
2828
});
29-
30-
it('sorts string array (with compareFunction) (descending)', () => {
31-
const resultArray = sort(stringArray, (a, b) => a.toLowerCase() < b.toLowerCase());
32-
expect(resultArray).to.eql(['Humpback', 'Blue', 'Beluga']);
33-
});
3429
});

0 commit comments

Comments
 (0)