Merge pull request #103436 from codebytere/fix-json-reporter

fix: add missing property to deserializeRunnable
This commit is contained in:
João Moreno 2020-07-30 10:06:18 +02:00 committed by GitHub
commit c1f44f4e3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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