Skip to content

Commit

Permalink
fix: add missing property to deserializeRunnable
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Jul 28, 2020
1 parent 2c609ec commit 3770547
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/electron/index.js
Expand Up @@ -59,7 +59,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 3770547

Please sign in to comment.