You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
allow relative path resolution
create special {spec_path} variable
allow absolute path resolution (under unix and win systems) refactor afterScreenshot hook to awaits
add deprecation message for imagesDir option
add docs info
references issue #147
BREAKING CHANGE: deprecate imagesDir option in favor of imagesPath - see docs for additional information
// relative path are resolved against project root
178
+
// absolute paths (both on unix and windows OS) supported
179
+
// path separators will be normalised by the plugin depending on OS, you should always use / as path separator, e.g.: C:/my-directory/nested for windows-like drive notation
180
+
// There are one special variable available to be used in the path:
181
+
// - {spec_path} - relative path leading from project root to the current spec file directory (e.g. `/src/components/my-tested-component`)
0 commit comments