Skip to content
This repository was archived by the owner on May 11, 2026. It is now read-only.

v3.17.0

Choose a tag to compare

@trotzig trotzig released this 03 Jun 10:49

This version adds support for controlling the max height of screenshots. A new maxHeight option can be used to override the default 5000px limit imposed by the happo workers:

// .happo.js
module.exports = {
  targets: { 
    chrome: new RemoteBrowserTarget('chrome', { 
      viewport: '320x640', 
      maxHeight: 10000,
   });
}