Skip to content

Commit e6accf4

Browse files
author
Marc Rooding
committed
Fix for not ignoring the After screenshot step
1 parent 871c222 commit e6accf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/html_formatter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = (function () {
3535
* @returns boolean
3636
*/
3737
function isEmptyAfterStep(step) {
38-
return step.keyword.trim() === 'After' && step.name === undefined;
38+
return step.keyword.trim() === 'After' && step.name === undefined && step.embeddings === undefined;
3939
}
4040

4141
/**

0 commit comments

Comments
 (0)