it('unshift + shift', function () {
        verifyNoChanges([1, 2], arr => {
          arr.unshift(3);
          arr.shift();
        });