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