From 39b4aff4f854a99213f7a2ce35e3fc99fa92de2e Mon Sep 17 00:00:00 2001 From: Oliver Eyton-Williams Date: Mon, 14 Sep 2020 14:55:34 +0200 Subject: [PATCH] fix(client): return frame-runner err correctly --- client/src/client/frame-runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/client/frame-runner.js b/client/src/client/frame-runner.js index bff1a2d1da..84a94dce7d 100644 --- a/client/src/client/frame-runner.js +++ b/client/src/client/frame-runner.js @@ -98,7 +98,7 @@ async function initTestFrame(e = { code: {} }) { console.error(err); } // return the error so that the curriculum tests are more informative - return err; + return { err }; } }; }