fix: add missing property to deserializeRunnable

This commit is contained in:
Shelley Vohr 2020-07-27 14:07:07 -07:00
parent 2c609ec4aa
commit 3770547cc1
No known key found for this signature in database
GPG key ID: F13993A75599653C

View file

@ -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
};
}