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