it('splice each item with two new items and sort desc in-between', function () {
        verifyChanges([S(1), S(2), S(3)], arr => {
          arr.splice(0, 1, S(1), S(2));
          arr.sort(desc);
          arr.splice(2, 1, S(3), S(4));