Releases: gemini-testing/testplane-storybook
Releases · gemini-testing/testplane-storybook
v1.7.4
🐛 Bug fixes
- make proxy stub more robust (#46)
This includes following cases:
- "ownKeys" versatility (
TypeError: 'ownKeys' on proxy: trap result did not include 'prototype') - "getOwnPropertyDescriptor" versatility (
TypeError: 'getOwnPropertyDescriptor' on proxy) - "window" stub (
ReferenceError: window is not defined) - not existing modules stub (
Error: Cannot find module '...')
v1.7.3
v1.7.2
v1.7.1
v1.7.0
v1.6.0
v1.5.1
v1.5.0
v1.3.0
🚀 Improvements
- Added
autoScreenshotStorybookGlobalsoption (can be specified in storyfile and in plugin config). (#28)
It can be specified in order to create multiple sets of autoscreenshot tests with different storybook global values
For example, with autoScreenshotStorybookGlobals is set to:
{
"default": {},
"light theme": {
"theme": "light"
},
"dark theme": {
"theme": "dark"
}
}there would be 3 screenshot tests for each story, with each having corresponding storybook globals value:
... Autoscreenshot default... Autoscreenshot light theme... Autoscreenshot dark theme
v1.2.3
🐛 Bug fixes
- fix
no test found errorwhen trying to launchtestplane --storybookwith explicitly setsystem.fileExtensionswithout.jsextension
