From 3770547cc1e0efdbf2411f42158a904d37438a30 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Mon, 27 Jul 2020 14:07:07 -0700 Subject: [PATCH] fix: add missing property to deserializeRunnable --- test/unit/electron/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/unit/electron/index.js b/test/unit/electron/index.js index 6d1c7653799..261652b26a1 100644 --- a/test/unit/electron/index.js +++ b/test/unit/electron/index.js @@ -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 }; }