it('2x unshift', function () {
        verifyChanges([S(1), S(2)], arr => {
          arr.unshift(S(3));
          arr.unshift(S(4));
        });