We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c93af36 commit 283e018Copy full SHA for 283e018
test/sort.spec.js
@@ -26,9 +26,4 @@ describe('immutable-sort', () => {
26
const resultArray = sort(stringArray);
27
expect(resultArray).to.eql(['Beluga', 'Blue', 'Humpback']);
28
});
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
- });
34
0 commit comments