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