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