it('add inner item + swap outer items', function () {
          verifyChanges([S(1), S(3), S(4)], arr => {
            arr.splice(1, 0, S(2));
            arr.reverse();
          });