Skip to content

Commit

Permalink
Merge pull request #103436 from codebytere/fix-json-reporter
Browse files Browse the repository at this point in the history
fix: add missing property to deserializeRunnable
  • Loading branch information
joaomoreno committed Jul 30, 2020
2 parents cc20a1f + 3770547 commit c1f44f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/electron/index.js
Expand Up @@ -63,7 +63,8 @@ function deserializeRunnable(runnable) {
async: runnable.async,
slow: () => runnable.slow,
speed: runnable.speed,
duration: runnable.duration
duration: runnable.duration,
currentRetry: () => runnable.currentRetry
};
}

Expand Down

0 comments on commit c1f44f4

Please sign in to comment.