fix(client): return frame-runner err correctly

pull/39553/head
Oliver Eyton-Williams 2020-09-14 14:55:34 +02:00 committed by Mrugesh Mohapatra
parent 79105af50d
commit 39b4aff4f8
1 changed files with 1 additions and 1 deletions

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