@@ -20,18 +20,18 @@ test(`Palindrome '' to give undefined`, () => {
2020 expect ( palindrome ( '' ) ) . toEqual ( undefined ) ;
2121} ) ;
2222
23- test ( 'minAdjacentSwap is a function' , ( ) => {
24- expect ( typeof minAdjacentSwap ) . toEqual ( 'function' ) ;
25- } ) ;
26- test ( 'minAdjacentSwap mamad to give 3' , ( ) => {
27- expect ( minAdjacentSwap ( 'mamad' ) ) . toEqual ( 3 ) ;
28- } ) ;
29- test ( 'minAdjacentSwap asflkj to give -1' , ( ) => {
30- expect ( minAdjacentSwap ( 'asflkj' ) ) . toEqual ( - 1 ) ;
31- } ) ;
32- test ( 'minAdjacentSwap aabb to give 2' , ( ) => {
33- expect ( minAdjacentSwap ( 'aabb' ) ) . toEqual ( 2 ) ;
34- } ) ;
35- test ( `minAdjacentSwap ntiin to give 1` , ( ) => {
36- expect ( minAdjacentSwap ( 'ntiin' ) ) . toEqual ( 1 ) ;
37- } ) ;
23+ // test('minAdjacentSwap is a function', () => {
24+ // expect(typeof minAdjacentSwap).toEqual('function');
25+ // });
26+ // test('minAdjacentSwap mamad to give 3', () => {
27+ // expect(minAdjacentSwap('mamad')).toEqual(3);
28+ // });
29+ // test('minAdjacentSwap asflkj to give -1', () => {
30+ // expect(minAdjacentSwap('asflkj')).toEqual(-1);
31+ // });
32+ // test('minAdjacentSwap aabb to give 2', () => {
33+ // expect(minAdjacentSwap('aabb')).toEqual(2);
34+ // });
35+ // test(`minAdjacentSwap ntiin to give 1`, () => {
36+ // expect(minAdjacentSwap('ntiin')).toEqual(1);
37+ // });
0 commit comments