Skip to content

Commit ce03aca

Browse files
committed
issue #75
1 parent 7829bc0 commit ce03aca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jest-pkg/lib/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const png = ( id, parentId, screenshotTitle, options = {} ) => {
2929
const FILENAME_RE = /[^a-zA-Z\d\-\_]/g,
3030
normalizedTitle = screenshotTitle.replace( FILENAME_RE, "-" ),
3131
normalizedSuiteTitle = SUITE_NAME.replace( FILENAME_RE, "-" ),
32-
fileName = `${ id }.${ normalizedTitle }.png`;
32+
fileName = `${ id }.${ normalizedTitle }.png`,
3333
path = join( PATH_SCREENSHOTS, normalizedSuiteTitle,
3434
parentId !== null ? parentId + "." + fileName : fileName );
3535
shell.mkdir( "-p" , dirname( path ) );

0 commit comments

Comments
 (0)