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