it('splice the middle item with three new items and sort desc', function () {
        verifyChanges([S(1), S(2), S(3)], arr => {
          arr.splice(1, 1, S(2), S(4), S(5));
          arr.sort(desc);
        });