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 ed2abde commit 21ce971Copy full SHA for 21ce971
src/algorithms/sorting/merge-sort/__test__/MergeSort.test.js
@@ -22,9 +22,9 @@ describe('MergeSort', () => {
22
SortTester.testSortWithCustomComparator(BubbleSort);
23
});
24
25
- // it('should do stable sorting', () => {
26
- // SortTester.testSortStability(BubbleSort);
27
- // });
+ it('should do stable sorting', () => {
+ SortTester.testSortStability(BubbleSort);
+ });
28
29
it('should visit EQUAL array element specified number of times', () => {
30
SortTester.testAlgorithmTimeComplexity(
0 commit comments