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