Skip to content

Releases: gemini-testing/testplane

hermione/v9.0.0-rc.1

07 Mar 11:44
Compare
Choose a tag to compare
hermione/v9.0.0-rc.1 Pre-release
Pre-release

💬 Common

  • update looks-same to 10.0.0-rc.0 with updated sharp (#861)

hermione/v9.0.0-rc.0

07 Mar 11:37
Compare
Choose a tag to compare
hermione/v9.0.0-rc.0 Pre-release
Pre-release

💣 Breaking changes

  • node versions less than 18.7.0 are no longer supported (#859)

💬 Common

  • update sharp to 0.33.2 which install libvips from npm and not from gh (more info here). Moreover new version weighs 1.1Mb vs 27Mb (previous version) (#859)
  • this version available by npm i hermione@next

hermione/v8.2.1

07 Mar 12:01
Compare
Choose a tag to compare

🐛 Bug fixes

  • added missing typings for differentPixels and diffRatio fields (#852)

hermione/v8.2.0

01 Mar 09:10
Compare
Choose a tag to compare

🚀 Improvements

  • export TestError type (#848)
  • add ability to ignore few pixels in assertView command (#849)
    Example:
it('example', async ({browser}) => {
    // ignores up to 5 diff pixels
    await browser.assertView('some-state', 'some-selector', {ignoreDiffPixelCount: 5});

    // ignores up to 1.5% diff pixels
    await browser.assertView('other-state', 'other-selector', {ignoreDiffPixelCount: "1.5%"});
});

hermione/v8.1.0

20 Feb 11:53
Compare
Choose a tag to compare

🚀 Improvements

  • add new command moveCursorTo which move cursror from top-left corner of the element (moveTo from hermione@8.0.0 move cursror from center of the element) (#842)

🐛 Bug fixes

  • "resetCursor" option move cursor to the the top-left corner of the viewport (#842)

hermione/v8.0.6

12 Feb 20:49
Compare
Choose a tag to compare

🐛 Bug fixes

  • do not lose "testXReqId" field when using "parallelLimit". Previously, during the first few requests to the browser, the field X-Request-ID was empty. (#836)

hermione/v7.5.4

12 Feb 20:52
Compare
Choose a tag to compare

🐛 Bug fixes

  • do not lose "testXReqId" field when using "parallelLimit". Previously, during the first few requests to the browser, the field X-Request-ID was empty. (#843, backport from v8.0.6)

hermione/v8.0.5

01 Feb 10:57
Compare
Choose a tag to compare

🐛 Bug fixes

  • fix packages versions in package.json
  • round xOffset and yOffset when resetting cursor before test

hermione/v8.0.4

01 Feb 10:42
Compare
Choose a tag to compare

🐛 Bug fixes

  • fix typings

hermione/v8.0.3

24 Jan 15:47
Compare
Choose a tag to compare

🐛 Bug fixes

  • correctly disable test execution timeout in repl mode (#830)