Skip to content

Releases: gemini-testing/html-reporter

v11.6.0

20 Nov 09:13

Choose a tag to compare

This release contains features that may be useful for plugin developers.

πŸš€ Features

  • Added CollapsibleSection component to Plugins SDK. Use this component in your plugins to match the visual style of collapsible sections found on the test result page (e.g. Actions or Metadata). This component also remembers user preferences (collapsed/expanded) and applies them when switching tests.
  • Added result_meta extension point to New UI. This lets you embed your components right on the test result page.

v11.5.0 β€” New short urls!

17 Nov 07:19

Choose a tag to compare

πŸš€ Features

New url format

Previously, we had URLs on the suites page like this:
suites/${testId}/${state}/${attempt}

And on the screenshots page like this:
visual-checks/${imageId}/${attempt}

Now we have a common format for both pages. We also changed the test name to a hash of the test name:
${suites | visual-checks}/${hash}/${browser}/${attempt}/${state}

Example of the new URL:
http://localhost:8000/new-ui#/suites/26f8dee/chrome/0/main
Before it was:
http://localhost:8000/new-ui#/suites/badges%20badge%20example%203%20chrome/main/0

Note

This mode is only available in New UI

v11.4.0

29 Oct 13:39

Choose a tag to compare

πŸš€ Features

Custom badges for tests

Now you can set custom badges for every test. Each badge can have a title, link, and icon. See the screenshot for an example and read the documentation to implement it in your project.

Screenshot 2025-10-29 at 20 35 01

Note

This mode is only available in New UI

v11.3.0 β€” An all-new interactive diff viewer!

23 Oct 11:12

Choose a tag to compare

This release contains a new diff viewer, built from ground up, that lets you work with visual checks like never before!

πŸš€ Features

Interactive Diff Viewer

The new diff viewer allows you to zoom in, pan and interact with screenshots in a synced split view. Here's what it looks like when you first open it up:

Screenshot 2025-10-23 at 13 32 06

Note

This mode is only available in New UI and only on Visual Checks tab.

Glide across and inspect visual changes with fluid and beautifully smooth animations:

2up.mp4

There's also this neat toolbar that appears as soon as you point at an image. You can download, zoom in/out, reset the zoom and fit image to width using these buttons:

Screenshot 2025-10-23 at 13 49 11

We're planning even more exciting updates to this diff viewer, like tools to help you find tiny diffs and more polished experience when viewing successful visual checks β€” stay tuned!

Hope you’ll enjoy using the new Diff Viewer as much as we enjoyed building it. Happy diffing!

v11.2.1

08 Oct 09:32

Choose a tag to compare

πŸ› Bug fixes

This release fixes Plugins SDK to be compatible with CommonJS modules. It was ESM-only unintentionally before.

v11.2.0 β€” Improvements for plugins developers

08 Oct 09:30

Choose a tag to compare

πŸš€ Features

Plugins SDK

More dependencies are now available for use in reporter plugins β€” including @gravity-ui/uikit and all-new repoter plugins SDK.

what you can do with Plugins SDK

On Node side, you may import typings and constants (with more to come in the future).

Right now, you may import a enum, containing all possible extension point names (places where you can embed your plugin):

// Useful for exporting ready-to-use plugin presets
import {ExtensionPointName} from 'html-reporter/plugins-sdk';

export = {
    name: "my-plugin/ui",
    component: "Plugin",
    point: ExtensionPointName.SettingsPanel,
    position: "after",
};

Another thing you can do with Plugins SDK is to import plugin options type, which looks like this:

interface PluginOptions {
    pluginServerEndpointPrefix: string;
}

You can use it in your plugin UI to determine the correct endpoint where your plugin server side is exposing endpoints, like this:

// pluginOptions are injected in your UI by html-reporter
// @see https://github.com/gemini-testing/html-reporter/blob/b100027bb165377789fcbaa05954c6127788ddc7/lib/static/modules/load-plugin.js#L105

const endpoint = pluginOptions.pluginServerEndpointPrefix.replace(/\/$/, "") + "/items";

const responseFromPluginBackend = await fetch(endpoint);

There's also ready-to-use UI components in Plugins SDK that match HTML Reporter visuals perfectly.

For now, there's PanelSection component that lets you build additional settings that looks like this:

Screenshot 2025-10-08 at 12 23 48

And may be used like this:

import {} from 'html-reporter/plugins-sdk/ui';

export function Plugin() {
  return <PanelSection title='My Plugin Settings' description={'Change plugin settings in this section'}>
    {/* You may use any controls, like Select or TextInput here */}
  </PanelSection>;
}

You may learn more about what's available on UI side here: https://github.com/gemini-testing/html-reporter/blob/b100027bb165377789fcbaa05954c6127788ddc7/lib/static/modules/plugins-sdk-ui.ts.

Besides components, redux store typings and Feature types are exported. Important note: only typings are actually exported from the html-reporter/plugins-sdk/ui, not components themselves. The components themselves are injected here and should be supplied by your bundler.

Stay tuned for additional docs on how to build plugins for HTML Reporter ✨

v11.1.1

30 Sep 14:41

Choose a tag to compare

πŸ› Bug fixes

  • display the current status of the tests in favicon (#716)
  • await for 'getTestsTreeFromDatabase' calls (#726)

v11.1.0

25 Sep 11:57

Choose a tag to compare

πŸš€ Features

  • clear input button (#721)

πŸ› Bug fixes

  • run button does not cause any visual reaction when pressed (#717)
  • ability to import config with using import attributes (#720)
  • improve error message when we failed to read playwright config (#722)
  • correctly merge report even if request for databaseUrls.json failed (#723)

v11.0.3

24 Sep 21:28

Choose a tag to compare

πŸ› Bug fixes

  • search (#692)
  • invalid parent suite calc (#715)
  • skipped tests are not written to db (#714)

v11.0.2

03 Sep 14:07

Choose a tag to compare

πŸ› Bug fixes

  • select only visible tests when select all button was clicked (#699)
  • fix jitter during images load in tree view, enhance tree items visuals and fix scrollbar interfering with checkboxes (#702)

πŸš€ Performance

  • Decreased launch time (200ms -> 100ms for launch with single test) (#704)
  • Decreased time to parse tests when using "gui" mode (#705)