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