fix(client): return frame-runner err correctly

This commit is contained in:
Oliver Eyton-Williams
2020-09-14 14:55:34 +02:00
committed by Mrugesh Mohapatra
parent 79105af50d
commit 39b4aff4f8

View File

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